JAVA方法传递参数:传值?传引用?
摘要:
原文地址 :http://blog.sina.com.cn/jacktee先来看下面这三段代码://Example1:public class Example1{ static void check(int a) { a++; } public static void main(String[]args) { int x=10; check(x); System.out.println(“Example1.x=”+x);}}//Example2:public class Example2 { static void check(St... 阅读全文
posted @ 2013-12-27 10:59 alex_lo 阅读(13115) 评论(1) 推荐(1) 编辑