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.
我正在编写一个具有ArrayList<String> s. 有没有办法从 中获取每个值ArrayList并将它们设置为单独的变量?例如:
ArrayList<String> s
ArrayList
String s0 = s.get(0); String s1 = s.get(1); String s2 = s.get(2); . . . String sn = s.get(n);
我会知道“n”是什么,但它会根据用户输入而改变。我只是不知道如何/是否可以根据某个数字 n 动态创建变量。任何帮助将非常感激!
你不能。这就是数组(和ArrayLists)的用途!