Java 接口类型

2018-01-19 16:52 更新

Java面向对象设计 - Java接口类型


接口定义了一个新的引用类型。

我们可以使用接口类型来声明变量,在方法中声明参数类型,作为方法的返回类型等。

interface  Shape {
    void  draw();
}
public class Main {
  // interface type as instance variable
  private Shape myShape;

  // interface type as parameter type for a constructor
  public Main(Shape s) {
    this.myShape = s;
  }

  // interface type as return type of a method
  public Shape getShape() {
    return this.myShape;
  }

  // interface type as parameter type for a method
  public void setShape(Shape s) {
    this.myShape = s;
  }

  public void letItSwim() {
    // interface type as a local variable
    Shape locaShape = null;

    locaShape = this.myShape;

    // interface variable can invoke methods
    // declared in the interface and the Object class
    locaShape.draw();
  }
}

注意

接口类型的变量是指其类实现该接口的内存中的对象。

我们可以使用接口类型的变量或直接使用接口名称来访问接口中声明的任何常量字段。

最好使用接口名访问接口的常量。常量。

我们可以使用接口类型的变量来调用接口中声明的任何方法。

接口类型的变量可以调用java.lang.Object类的任何方法。

默认情况下,接口类型的实例或静态变量将初始化为null。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号