2
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?

Java 用語整理

Last updated at Posted at 2024-12-01

今まで学習してきて意味が混同しがちな用語

  • クラスとインスタンス
    仮想世界で活動するのがインスタンス、そのインスタンスを生み出すための金型がクラス。

  • フィールド
    クラスブロック内に宣言された変数のこと

public class Hero{
    String name;     //この部分が
    int hp;          //フィールドの宣言
}
  • メソッド
    複数の分をまとめて、それを一つの処理として名前を付けたもの

  • コンストラクタ
    メソッドの一種・・・newされると自動的に実行される。
    コンストラクタとみなされる条件

    1. メソッド名がクラス名と完全に等しい
    2. メソッド宣言に戻り値の型が宣言されていない
  • インターフェース
    インターフェースに宣言されたメソッドは、自動的にpublicかつabstractとなる。

2
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
2
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?