Java中数组与集合转换的注意事项
摘要:
程序中时常需要相互转换数组及其对应的集合形式,比如把字符串数组String[]转换成字符串集合List<String>。 下面就以字符串为例进行说明,一般情况下转换是这样进行的: 1) 数组转集合 String[] strArray = new String[] { "a", "b", "c" }; List<String> strList = Arrays.asList(strArray); ... 阅读全文
posted @ 2013-04-28 16:36 Alex木头 阅读(1049) 评论(0) 推荐(1) 编辑