标签:compare rabl col return interface 格式 pre turn nts
6.1 接口
在Java中,接口不是类,而是对类的一组需求描述,这些类要遵从接口描述的统一格式进行定义。
public interface Comparable { int compareTo(Object other); }
接口当中的所有方法自动属于public。因此,在接口当中声明方法时,不必提供关键字public。
接口当中可能包含多个方法。
接口绝不能含有实例域,也不能在接口当中实现方法。
要将类声明为实现某个接口,需要使用关键词implements:
class Employee implements Comparable
compareTo方法的实现:
public int compareTo(Object otherObject) { Employee other = (Employee) otherObject; return Double.compare(salary, other.salary); }
标签:compare rabl col return interface 格式 pre turn nts
原文地址:https://www.cnblogs.com/ayor/p/12823498.html