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 转换为 Array。
在Java中有什么方法可以做到这一点吗?
谁能帮我解决这个问题?
是的,可以查看 List 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() 函数可以实现这一点。