Java零基础—方法执行过程中的内存分配
摘要:
以如下代码为例: 1 public class MethodTest01{ 2 public static void main(String[] args){ 3 int a = 10; 4 int b = 20; 5 6 int retValue = sumInt(a,b); 7 8 System 阅读全文
posted @ 2021-02-22 23:09 AnYeYiYang 阅读(64) 评论(0) 推荐(0) 编辑