Java 接口

接口

在 Java 中实现 抽象 的另一种方法是使用接口。

interface 接口是一个完全 抽象类 ,用于将相关方法与空主体分组:

实例
  1. // interface
  2. interface Animal {
  3. public void animalSound(); // 接口方法(没有主体)
  4. public void run(); // 接口方法(没有主体)
  5. }

要访问接口方法,接口必须由另一个带有 implements 关键字(而不是 extends)的类 "实现"(有点像继承)。接口方法的主体由 the "implement" 类提供:

实例
  1. interface Animal {
  2. public void animalSound();
  3. public void sleep();
  4. }
  5. class Pig implements Animal {
  6. public void animalSound() {
  7. System.out.println("The pig says: wee wee");
  8. }
  9. public void sleep() {
  10. System.out.println("Zzz");
  11. }
  12. }
  13. public class Main {
  14. public static void main(String[] args) {
  15. Pig myPig = new Pig();
  16. myPig.animalSound();
  17. myPig.sleep();
  18. }
  19. }

关于接口的说明:

  • 与抽象类一样,接口不能用于创建对象(在上面的实例中,不可能在 MyMain 类中创建 "Animal" 对象)
  • 接口方法没有主体——主体由 "implement" 类提供
  • 在实现接口时,必须覆盖其所有方法
  • 默认情况下,接口方法是 abstract 抽象的和 public 公共的
  • 接口属性默认为 publicstaticfinal
  • 接口不能包含构造函数(因为它不能用于创建对象)

为什么以及何时使用接口?

1) 为了实现安全性——隐藏某些细节,只显示对象(接口)的重要细节。

2) Java 不支持 "多继承"(一个类只能从一个超类继承)。但是,它可以通过接口实现,因为该类可以 实现 多个接口。

注意:要实现多个接口,请用逗号分隔它们(参见下面的实例)。


多个接口

要实现多个接口,请用逗号分隔它们:

实例
  1. interface FirstInterface {
  2. public void myMethod();
  3. }
  4. interface SecondInterface {
  5. public void myOtherMethod();
  6. }
  7. class DemoClass implements FirstInterface, SecondInterface {
  8. public void myMethod() {
  9. System.out.println("Some text..");
  10. }
  11. public void myOtherMethod() {
  12. System.out.println("Some other text...");
  13. }
  14. }
  15. public class Main {
  16. public static void main(String[] args) {
  17. DemoClass myObj = new DemoClass();
  18. myObj.myMethod();
  19. myObj.myOtherMethod();
  20. }
  21. }