摘要: 1、数组转集合 使用Arrays的asList() 包装器 例: String[] strs = ...; List<String> list = new ArrayList<>(Arrays.asList(strs)); HashSet<String> set = new HashSet(Arra 阅读全文
posted @ 2017-10-13 15:30 孙宝路 阅读(409) 评论(0) 推荐(0) 编辑