这就是我所拥有的:
class Person {
Integer id;
String name;
}
// A list of persons:
List<Person> persons
// Now I have something like this:
List<Integer> ids // where the ids are stored in an specific order
基本上我想按照与ID相同的顺序对人员列表进行排序。
有没有更好的方法然后使用两个循环并创建一个新的人员列表?
问候 && 蒂亚
noircc