java List排序[根据属性和序号排序]

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class DD {

	public static void main(String[] args) {
		List<AA> tempList = new ArrayList<AA>();
		List<AA> plxhList = new ArrayList<AA>();

		AA name = new AA();
		name.setQzbs(1);
		name.setPlxh(1);
		tempList.add(name);

		AA name2 = new AA();
		name2.setQzbs(1);
		name2.setPlxh(2);
		tempList.add(name2);

		AA name3 = new AA();
		name3.setQzbs(0);
		name3.setPlxh(3);
		tempList.add(name3);

		AA name4 = new AA();
		name4.setQzbs(1);
		name4.setPlxh(4);
		tempList.add(name4);

		AA name5 = new AA();
		name5.setQzbs(0);
		name5.setPlxh(5);
		tempList.add(name5);

		AA name6 = new AA();
		name6.setQzbs(1);
		name6.setPlxh(6);
		tempList.add(name6);

		int px = 0;
		// 排序
		for (int i = 0, len = tempList.size(); i < len; i++) {
			if (tempList.get(i).getQzbs() == 1) {
				plxhList.add(px, tempList.get(i));
				px++;
			} else {
				plxhList.add(i, tempList.get(i));
			}
		}

		for (int j = 0; j < plxhList.size(); j++) {
			System.out.println(plxhList.get(j).getPlxh());
		}
	}
	// 输出结果:
	// 1
	// 2
	// 4
	// 6
	// 3
	// 5
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值