Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: arrayListをJavaの配列に格納する方法は?
ArrayListを配列に変換する方法を知りたいです。
Javaでそうする方法はありますか?
誰かがこれについて私を助けることができますか?
はい、リスト API を確認してください。
List.toArray(T[])
例:
List<Integer> list = new ArrayList<>(); list.add(1); list.add(2); list.add(3); Integer[] arr = list.toArray(new Integer[list.size()]);
それを実現する配列リスト用の .toArray() 関数があります。