码迷,mamicode.com
首页 > 其他好文 > 详细

ArrayList新new法,以前没这么写过

时间:2015-08-07 20:28:04      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

List<String> l1 = new ArrayList<String>();
  l1.add("a");
  l1.add("a");
  l1.add("b");
  l1.add("b");
  l1.add("c");
  l1.add("c");
  l1.add("d");
  l1.add("d");
  
  //()括号里直接把l1传进去,s1就有了l1的元素
  Set<String> s1 = new LinkedHashSet<String>(l1);
  
  //同理l2里有了s1的元素
  List<String> l2 = new ArrayList<String>(s1);
  
  System.out.println(l1);
  System.out.println(l2);

output:

[a, a, b, b, c, c, d, d]
[a, b, c, d]

 

ArrayList新new法,以前没这么写过

标签:

原文地址:http://my.oschina.net/u/2400412/blog/489331

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!