码迷,mamicode.com
首页 > 编程语言 > 详细

java8 stream sorted

时间:2017-04-10 19:47:35      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:lis   tom   sort   eve   com   slist   sorted   tag   list   

List<Person> list = Arrays.asList(
new Person(22, "shaomch", "man"),
new Person(26, "mike", "wemon"),
new Person(24, "tom", "wemon"),
new Person(22, "tom", "wemon")
);
//升序排列
List<Person> list1 = list.stream().sorted(Comparator.comparing(Person::getAge)).collect(Collectors.toList());
//降序排列
List<Person> list2 = list.stream().sorted(Comparator.comparing(Person::getAge).reversed()).collect(Collectors.toList());

java8 stream sorted

标签:lis   tom   sort   eve   com   slist   sorted   tag   list   

原文地址:http://www.cnblogs.com/michaelShao/p/6690231.html

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