Create ArrayList from array

后端 未结 30 2297
遇见更好的自我
遇见更好的自我 2020-11-21 22:29

I have an array that is initialized like:

Element[] array = {new Element(1), new Element(2), new Element(3)};

I would like to convert this

30条回答
  •  不要未来只要你来
    2020-11-21 23:07

    Another update, almost ending year 2014, you can do it with Java 8 too:

    ArrayList arrayList = Stream.of(myArray).collect(Collectors.toCollection(ArrayList::new));
    

    A few characters would be saved, if this could be just a List

    List list = Stream.of(myArray).collect(Collectors.toList());
    

提交回复
热议问题