1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

インターフェース

Posted at

インターフェース全てのメソッドが抽象メソッドで一般的にフィールドを持たないクラスです。
※public static finalのフィールド(定数)のみ宣言が可能です。
フィールドを持たないインターフェースを用いると、通常のクラスでは利用できない多重継承を行う事が出来ます。

宣言方法
アクセス修飾子 interface インターフェース名{
}

インターフェースで宣言されたメソッドはpublicでabstructになります。

参考文献

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?