我想按对象拥有的字符串对对象进行排序。只是想知道这有意义吗?以前我只使用过Arrays.sort(BlahList);
,但现在我可以有很多对象,而不仅仅是一个字符串数组列表。
public class Contact implements Comparable
{
private string name;
public compareTo (Contact Contact1)
{
return this.name.compareTo(Contact1.name);
}
}
在我的主要方法中:
Collections.sort(ContactList);
我还想知道如果名称是年龄,这是否适用于整数?