gpt4 book ai didi

Java排序——全部大写优先

转载 作者:行者123 更新时间:2023-12-02 03:34:41 25 4
gpt4 key购买 nike

我想对这样的项目进行排序(首先排序所有大写字母):

A
B
C
D
a
b
c
d

如何使用集合排序?假设我的对象是 Account,accountName 是我想要按这种方式排序的字段

谢谢

最佳答案

您需要在帐户类中实现 Comparable 接口(interface)并重写compareTo()方法。

class Account implements Comparable{

public String accountName;

public Account(String accountName) {
this.accountName = accountName;
}

public String getAccountName() {
return accountName;
}

public void setAccountName(String accountName) {
this.accountName = accountName;
}

@Override
public String toString() {
return "Account [accountName=" + accountName + "]";
}

@Override
public int compareTo(Object obj) {
Account accObj = (Account) obj;

return this.accountName.compareTo(accObj.accountName);
}

}

现在 Collections.sort() 将返回您想要的结果。

List<Account> accList= new ArrayList<Account>();
accList.add(new Account("B"));
accList.add(new Account("c"));
accList.add(new Account("A"));

accList.add(new Account("C"));
accList.add(new Account("a"));
accList.add(new Account("b"));

Collections.sort(accList);

关于Java排序——全部大写优先,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37583478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com