-2
ArrayList<String> nameList = new ArrayList<String>();
nameList.add("James");
nameList.add("Joe");
nameList.add("Josh");
nameList.add("Bob");
nameList.add("Billy");
System.out.println("The names are:\n " + nameList);
nameList.remove(1);
System.out.println("Find the index 1 and remove their name from the list:\n "+ nameList);
nameList.size();
System.out.println("Currently the ArrayList holds " + nameList.size() +
" names after removing the name of index 1");
String[] tempArray= new String[nameList.size()];
tempArray = nameList.toArray(tempArray);
System.out.println(tempArray); // I want it to display the values of the ArrayList
}
}
我得到的輸出是[Ljava.lang.String; @ 4554617c當我希望它看起來像這樣[詹姆斯,喬希,鮑勃,比利]。編程新手會欣賞幫助。ArrayList以數組不顯示我想要的方式
謝謝!我認爲沒有人會回答,因爲我的帖子由於某種原因一直被拒絕。 –
@TrushPatel @TrushPatel如果您認爲此答案有幫助,請點擊角落中的綠色複選標記to以向社區顯示此答案有幫助 – vikarjramun
@TrushPatel由於您可以通過Google搜索輕鬆找到解決方案,因此您的帖子被降低了投票率數組'谷歌的第一篇文章是你的問題重複的問題。 – Oleg