简体   繁体   中英

Adding to Arraylists

i know how to add many things into arraylist at once, like:


String [] things = {"eggs ", "pie ", "lasers ", "hat "}; List list1 = new ArrayList();

for (String s: things) list1.add(s);

but is there a way to add things into arraylist iteratively one by one?

You ARE adding things iteratively, but if what you meant was the exact opposite

then if the elements are in any kind of Collection, you can use adAll(Collection c) or if it's an array you can use Arrays.toList(...) to convert the array to a list that you can pass to adAll

http://download.oracle.com/javase/6/docs/api/java/util/ArrayList.html

您在寻找这个吗?

List<String> thingsList = Arrays.asList(things); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM