-1
我有一個像這樣的初始化數組:如何將數組轉換爲ArrayList?
Element[] array = {new Element(1), new Element(2), new Element(3)};
我怎麼向這個數組轉換成ArrayList
對象?
我有一個像這樣的初始化數組:如何將數組轉換爲ArrayList?
Element[] array = {new Element(1), new Element(2), new Element(3)};
我怎麼向這個數組轉換成ArrayList
對象?
您可以簡單地使用Arrays.asList(array)
創建陣列的ArrayList
。
謝謝,Kagemusha –