- 论坛徽章:
- 0
|
Arrays类中的sort方法可以对对象数组进行排序,但要求满足下列前提:对象所属的类必须实现了Comparable接口.
任何实现Comparable接口的类都需要包含comparaTo方法.并且这个方法的参数必须是个Object对象.返回一个整数数值.
注意: 在JDK5.0中,Comparable接口已经改进为泛型类型.
public interface ComparableT>
{
int compareTo(T other);//parameter has type T
}
接口绝不能含实例域,也不能在接口中实现方法.提供实例域和方法实现的任务应该由实现接口的那个类来完成.
下面给出一段代码使用Arrays类的sort方法对Employee对象数组,进行排序.
(注: 让类实现一个接口
1.将类声明为实现给定的接口.
2.对接口中的所有方法进行定义.
)
import java.util.*;
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 objects
for (Employee e : staff)
System.out.println("name=" + e.getName() + ",salary=" + e.getSalary());
}
}
class Employee implements ComparableEmployee>
{
public Employee(String n, double s)
{
name = n;
salary = s;
}
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)
{
if (salary other.salary) return -1;
if (salary > other.salary) return 1;
return 0;
}
private String name;
private double salary;
}
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/31513/showart_276720.html |
|