2 Star 0 Fork 0

20145308 / java-besti-is-2015-2016-2-20145308

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Sort2 779 Bytes
一键复制 编辑 原始数据 按行查看 历史
20145308 提交于 2016-04-03 06:36 . new file
import java.util.*;
class Account {
private String name;
private String number;
private int balance;
Account(String name, String number, int balance) {
this.name = name;
this.number = number;
this.balance = balance;
}
@Override
public String toString() {
return String.format("Account(%s, %s, %d)", name, number, balance);
}
}
public class Sort2 {
public static void main(String[] args) {
List accounts = Arrays.asList(
new Account("Justin", "X1234", 1000),
new Account("Monica", "X5678", 500),
new Account("Irene", "X2468", 200)
);
Collections.sort(accounts);
System.out.println(accounts);
}
}
Java
1
https://gitee.com/yg1022/java-besti-is-2015-2016-2-20145308.git
git@gitee.com:yg1022/java-besti-is-2015-2016-2-20145308.git
yg1022
java-besti-is-2015-2016-2-20145308
java-besti-is-2015-2016-2-20145308
master

搜索帮助