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

More than 5 years have passed since last update.

インスタンス生成とコンストラクタとフィールドとか

Posted at

インスタンス生成(newの時)
①フィールド初期化
②コンストラクタの呼び出し
※コンストラクタが1つもない時は自動で作られる

Aaa o = new Bbb(100);
このようなインスタンスを生成した際、Bbbクラスのコンストラクタに飛ぶ

System.out.println(o.a);
フィールドの場合は型であるAaaクラスのフィールドに飛ぶ

o.sample()
メソッドを呼び出した場合はオブジェクトであるBbbのメソッドに飛ぶ

※フィールド → 型
 メソッド  → オブジェクトと覚えよう

0
0
2

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