变量的值传递

代码如下:

package ClassDemo; public class Increment {
public static void main(String[] args) {
int x = 1;
System.out.println("Before the call, x is: " + x);
increment(x);
System.out.println("After the call, x is: " + x);
} private static void increment(int n) {
n++;
System.out.println("n inside the method is: " + n);
}
}

posted @ 2017-06-20 18:23  辰峰  阅读(165)  评论(0编辑  收藏  举报