Java 语言中对数组列表进行排序
我设置了一个数组列表。我也设置了输入指令,以便用户可以输入一个字符串,然后输入一个整数,然后输入一个字符串(名字、年龄和姓氏)。
我需要按姓氏对数组列表进行排序。到目前为止我输入的代码都在 main 方法下:-
public static void main(String[] args) {
Name Name[] = new Name[50];
int count = 0;
for (int i=0; i<50; i++)
NewName[i] = new Name();
//ADD NEW TO ARRAYLIST NAME
String FName = JOptionPane.showInputDialog("first name");
int age = Integer.parseInt(JOptionPane.showInputDialog("age"));
String LName = JOptionPane.showInputDialog("last name");
NewName[count] = new Name(FName, age, LName);
count = count++;
}
//ITEMS SORT BY LAST NAME
//CODE FOR SORT GOES HERE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看比较, 比较器,Arrays.sort 和 集合.排序
Take a look at Comparable, Comparator, Arrays.sort and Collections.sort
这并不是要冒犯,但我建议您在继续使用 Swing 之前学习基础知识。
This isn't meant to be offensive but I would suggest you learn the basics before you move on to Swing.