lambda根据list对象中某一属性进行排序

这段代码演示了如何使用Java 8的Lambda表达式对Person对象列表按生日和年龄进行排序。首先创建了一个Person对象列表,然后通过stream()、sorted()和collect()方法分别实现了按生日降序和年龄升序的排序操作,并打印了排序后的结果。
摘要由CSDN通过智能技术生成

使用lambda对list排序

public class Person {
	
	private String name;
	
	private String birthday;
	
	private Integer age;
	
	
	public void setName(String name){
		this.name = name;
	}
	
	public void setBirthday(String birthday){
		this.birthday = birthday;
	}
	
	public void setAge(Integer age){
		this.age = age;
	}
	
	public String getName(){
		return this.name;
	}
	
	public String getBirthday(){
		return this.birthday;
	}
	
	public Integer getAge(){
		return this.age;
	}

	@Override
	public String toString() {
		return "Person [name=" + name + ", birthday=" + birthday + ", age=" + age + "]";
	}
}
		List<Person> personList = new ArrayList();
		Person person = new Person( );
		person.setName("jkl");
		person.setBirthday("2000-01-05");
		person.setAge(21);
		personList.add(person);
		person = new Person( );
		person.setName("theshy");
		person.setBirthday("1999-01-05");
		person.setAge(22);
		personList.add(person);
		person = new Person( );
		person.setName("rookie");
		person.setBirthday("2001-01-05");
		person.setAge(20);
		personList.add(person);
		
		System.out.println("根据生日降序 (字符串)");
		personList = personList.stream().sorted((p1,p2) -> p2.getBirthday().compareTo(p1.getBirthday())).collect(Collectors.toList());
		personList.stream().forEach(System.out :: println);
		System.out.println("根据年龄升序 (数字)");
		personList = personList.stream().sorted((p1,p2) -> p1.getAge().compareTo(p2.getAge())).collect(Collectors.toList());
		personList.stream().forEach(System.out :: println);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值