变量的值传递

Posted 辰峰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了变量的值传递相关的知识,希望对你有一定的参考价值。

代码如下:

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);
}
}

以上是关于变量的值传递的主要内容,如果未能解决你的问题,请参考以下文章

变量的值传递

abap 值传递 引用传递

为什么java是只有值传递而没有引用传递

变量的值传递

python中的值传递和引用传递

js按值传递和按引用传递