1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > JAVA——自定义排序(实现Comparable接口)

JAVA——自定义排序(实现Comparable接口)

时间:2021-01-12 23:25:23

相关推荐

JAVA——自定义排序(实现Comparable接口)

Arrays.sort()方法可对任何实现compareble接口的对象数组排序。

源代码

EmployeeSortTest.java

import java.util.*;/*** This program demonstrates the use of the Comparable interface.* @version 1.30 -02-27* @author Cay Horstmann*/public class EmployeeSortTest{public static void main(String[] args){Employee[] staff = new Employee[3];staff[0] = new Employee("Harry Hacker", 35000);staff[1] = new Employee("Carl Cracker", 75000);staff[2] = new Employee("Tony Tester", 38000);Arrays.sort(staff);// print out information about all Employee objectsfor (Employee e : staff)System.out.println("name=" + e.getName() + ",salary=" + e.getSalary());}}

Employee.java

public class Employee implements Comparable<Employee>{private String name;private double salary;public Employee(String name, double salary){this.name = name;this.salary = salary;}public String getName(){return name;}public double getSalary(){return salary;}public void raiseSalary(double byPercent){double raise = salary * byPercent / 100;salary += raise;}/*** Compares employees by salary* @param other another Employee object* @return a negative value if this employee has a lower salary than* otherObject, 0 if the salaries are the same, a positive value otherwise*/public int compareTo(Employee other){return pare(salary, other.salary);}}

参考文章

/zouzong123/article/details/81071086

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。