我对编程以及这个网站都是全新的,所以如果我搞砸了,请原谅我。我花了很长时间弄清楚如何在此处正确发布我的代码。
package tester;
import java.util.*;
public class Mainclass2 {
public static void main(String[] args) {
int y = 3;
int[] x = {1, 2, 3, 4};
editnumbersArray(x);
editnumbersNotArray(y);
System.out.println(x[2]); **//now this was changed from 3 to 9...**
System.out.println(y); //but this one went unchanged.
}
//this accepts 'x[]' into the 'a[]' parameter.
public static void editnumbersArray(int[] a){
a[2] = 9; **//<---why does this one CHANGE the actual x[2] instead of just a[2]?**
}
//this accepts 'y' into the 'a' parameter.
public static void editnumbersNotArray(int a){
a = 9; **//<--while this one only changes 'a' instead of 'y'?**
}
}
所以我的问题基本上是作为评论输入的。为什么传入方法的数组会改变原始数组(x[])的值,而传入另一个方法的int没有改变?我确定这是一个简单的答案,但是当我进行研究时,我无法弄清楚要搜索什么。我不知道这叫什么,所以我搜索的所有内容都让我走错了路。谢谢你的帮助!!
编辑:感谢与地址的类比!这是迄今为止你可以向我解释的最好方式。所以基本上当你将一个数组传递给一个参数时,它传递一个引用,而不是实际值?所以当我在我的方法中进行调整时,它会改变数组引用的任何内容?我注意到这也发生在列表中。那么列表实际上不是按值传递的吗?似乎数组/列表本身基本上是为了编辑而传入的,无论我在我的方法中将其命名为什么(在本例中为 a[]。)
编辑 http://javadude.com/articles/passbyvalue.htm 这个页面真的清除了它。很抱歉发布重复的问题。问题是我不知道我想问什么。我什至从未听说过这些术语“按值传递/引用”,所以现在我知道了