Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过变量指向数组项?例子:
String[] names; int test = 10; String myName = names[test];
目的是为用户名/密码程序从 2 个不同的数组中获取相同的数字项。
在您的示例中:
该变量myName是对数组中字符串的引用,但赋予它新值:
myName
myName = "fred";
不会对数组做任何事情——你要做的就是为该变量分配一个新的引用。
要给数组元素一个 bew 值,请执行以下操作:
names[test] = "fred";