没有定义类Namecomparator 如何在TestStudent类中定义comparator接口

没有定义类Namecomparator 如何在TestStudent类中定义comparator接口

import java.util.Comparator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

   
  public class NameComparator implements Comparator<Student> {
 
 @Override
 public int compare(Student arg0, Student arg1) {

  String Name01=arg0.getName();
  String Name02=arg1.getName();
  int n=Name01.compareTo(Name02);
  return n;
 } 
 }

    public class StudentTest {   
    public static void main(String[] args){
      Student stu1=new Student(40,20,"peter");
     Student stu2=new Student(28,5,"angle");
     Student stu3=new Student(35,18,"tom");
     List<Student>list=new ArrayList<Student>();
     list.add(stu1);
     list.add(stu2);
     list.add(stu3);
     System.out.println("排序前:");
     for(Student n:list) {
      System.out.println(n);
     }
     Collections.sort(list, new Comparator());
 System.out.println("升序后:");
 for(Student n:list) {
  System.out.println(n);
 }
 }  
    }


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕查理 2018-10-24 12:02:16

您好,StudentTest实现Comparator接口,重写compare类。即NameComparator类的代码写在StudentTest类里即可。祝学习愉快!

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师