免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1159 | 回复: 0
打印 上一主题 下一主题

接口与Arrays类中的sort方法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-12 21:47 |只看该作者 |倒序浏览
    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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP