我想创建一个方法来创建 ArrayList,并在现有 ArrayList 中的一个元素之后命名每个。
就像,ArrayList
original is (abc, def, ghi, jkl)
and I want the method to create 4 个 ArrayLists,分别命名为 abc、def、ghi 和 jkl。
如何将这些字符串(abc、def)拉出来并用它们来命名新的 ArrayLists?
我试过了:
ArrayList original.get(0) = new ArrayList();
但 Eclipse 说misplaced construct
我试过了:
String newName = original.get(count);
ArrayList (newName) = new ArrayList();
但它说the left hand side of of an assignment must be a variable
如果我将 newName 从括号中取出:
String newName = original.get(count);
ArrayList newName = new ArrayList();
它说duplicate local variable newName