过滤数组中重复值_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 过滤数组中重复值

过滤数组中重复值

 2017/8/1 18:39:01  钮晓东  程序员俱乐部  我要评论(0)
  • 摘要:Listlist=Arrays.asList(ids);Setset=newHashSet(list);String[]rid=(String[])set.toArray(newString[0]);
  • 标签:数组
class="java">List list = Arrays.asList(ids);
Set set = new HashSet(list);

String [] rid=(String [])set.toArray(new String[0]);
发表评论
用户名: 匿名