我尝试在 ArrayList 中添加多个对象,这是我的代码
ArrayList<WordData> unique = new ArrayList<WordData>();
WordData tempWordData = new WordData();
for(int i=0;i<3;i++)
{
String temp_word = word.get(i);
tempWordData.addWord(temp_word);
unique.add(tempWordData);
}
但是,所有的数据unique
ArrayList
是word.get(2)
,不是word.get(0), word.get(1), word.get(2)
请帮忙,谢谢