package shiyan; import java.util.Comparator; import java.util.TreeSet; class MyComparator implements Comparator<String> { public int compare(String s1, String s2) { return s1.length() - s2.length(); } } public class ComparatorDemo { public static void main(String[] args) { TreeSet<String> ts = new TreeSet<>(new MyComparator()); ts.add("Jack"); ts.add("Helena"); ts.add("Eve"); System.out.println(ts); } }分析此代码
时间: 2024-04-06 18:29:50 浏览: 63
这段代码实现了一个自定义比较器 `MyComparator`,用来比较 `String` 类型的对象。`MyComparator` 类实现了 `Comparator<String>` 接口,重写了 `compare` 方法,比较两个字符串的长度。
在 `main` 方法中,创建了一个 `TreeSet<String>` 对象 `ts`,并传入 `MyComparator` 对象作为参数,这样 `ts` 中的元素会按照字符串长度从小到大排序。然后向 `ts` 中添加了三个字符串 "Jack","Helena","Eve",最后输出 `ts`,结果为 ["Eve", "Jack", "Helena"],符合预期。
相关问题
package shiyan4_3; import java.util.TreeSet; public class Student implements TreeSet<Student> { String name; int score; Student(String name,int score) { this.name=name; this.score=score; } /** *补充代码[2],重写compareTo()方法 **/ public int getScore() { return score; } public String getName() { return name; } }
这段代码有问题,因为Java中的类不能直接实现 TreeSet 接口,而应该实现 Comparable 接口并重写 compareTo 方法。应该修改代码如下:
```java
package shiyan4_3;
import java.util.TreeSet;
public class Student implements Comparable<Student> {
String name;
int score;
Student(String name,int score) {
this.name=name;
this.score=score;
}
/**
* 重写 compareTo() 方法
**/
@Override
public int compareTo(Student other) {
return Integer.compare(this.score, other.score);
}
public int getScore() {
return score;
}
public String getName() {
return name;
}
}
```
在这个例子中,我们假设学生对象之间的比较是基于分数的。因此,compareTo 方法应该比较两个学生对象的分数,并返回一个 int 值,表示它们之间的大小关系。如果当前对象的分数小于 other 对象的分数,则返回负值;如果当前对象的分数等于 other 对象的分数,则返回 0;如果当前对象的分数大于 other 对象的分数,则返回正值。这个 compareTo 方法的实现中,使用了 Java 内置的 Integer.compare 方法,来比较两个 int 值的大小关系。
重写package shiyan4_3; import java.awt.; import java.awt.event.; import java.util.; import javax.swing.; public class StudentFrame extends JFrame implements ActionListener { JTextArea showArea; JTextField inputName,inputScore; JButton button; TreeSet<Student> treeSet; StudentFrame() { treeSet = new TreeSet<Student>(); showArea=new JTextArea(); showArea.setFont(new Font("",Font.BOLD,20)); inputName=new JTextField(5); inputScore=new JTextField(5); button=new JButton("确定"); button.addActionListener(this); JPanel pNorth=new JPanel(); pNorth.add(new JLabel("Name:")); pNorth.add(inputName); pNorth.add(new JLabel("Score:")); pNorth.add(inputScore); pNorth.add(button); add(pNorth,BorderLayout.NORTH); add(showArea,BorderLayout.CENTER); setSize(300,320); setVisible(true); validate(); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void actionPerformed(ActionEvent e) { String name=inputName.getText(); int score=0; try{ score=Integer.parseInt(inputScore.getText().trim()); if(name.length()>0) { Student stu=new Student(name,score); treeSet.add(stu); // treeSet添加stu show(treeSet); } } catch(NumberFormatException exp) { inputScore.setText("请输入数字字符"); } } public void show(TreeSet tree) { showArea.setText(null); Iterator<Student> te = tree.iterator(); //获得Iterator对象te while(te.hasNext()) { Student stu=te.next(); // te返回其中的下一个元素 showArea.append("Name:"+stu.getName()+" Score: "+stu.getScore()+"\n"); } } public static void main(String args[]) { new StudentFrame(); } }
package shiyan4_3;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
public class StudentFrame extends JFrame implements ActionListener {
private JTextArea showArea;
private JTextField inputName, inputScore;
private JButton button;
private TreeSet<Student> treeSet;
public StudentFrame() {
treeSet = new TreeSet<Student>();
showArea = new JTextArea();
showArea.setFont(new Font("", Font.BOLD, 20));
inputName = new JTextField(5);
inputScore = new JTextField(5);
button = new JButton("确定");
button.addActionListener(this);
JPanel pNorth = new JPanel();
pNorth.add(new JLabel("Name:"));
pNorth.add(inputName);
pNorth.add(new JLabel("Score:"));
pNorth.add(inputScore);
pNorth.add(button);
add(pNorth, BorderLayout.NORTH);
add(showArea, BorderLayout.CENTER);
setSize(300, 320);
setVisible(true);
validate();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e) {
String name = inputName.getText();
int score = 0;
try {
score = Integer.parseInt(inputScore.getText().trim());
if (name.length() > 0) {
Student stu = new Student(name, score);
treeSet.add(stu);
show(treeSet);
}
} catch (NumberFormatException exp) {
inputScore.setText("请输入数字字符");
}
}
public void show(TreeSet<Student> tree) {
showArea.setText(null);
Iterator<Student> te = tree.iterator();
while (te.hasNext()) {
Student stu = te.next();
showArea.append("Name:" + stu.getName() + " Score: " + stu.getScore() + "\n");
}
}
public static void main(String args[]) {
new StudentFrame();
}
}
阅读全文