提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
将集合转换为ArrayList
//package com.nowjava; import java.util.ArrayList; import java.util.Collection; /** 来 自 n o w j a v a . c o m - 时 代 Java **/ public class Main { public static void main(String[] argv) { Collection col = java.util.Arrays.asList("asdf", "nowjava.com"); System.out.println(toArrayList(col)); } public static <K> ArrayList<K> toArrayList(Collection<K> col) { if (col == null) { return new ArrayList<K>(); }/*来 自 nowjava.com - 时 代 Java*/ ArrayList<K> result =