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?

【Java】【TIPS】クラス名をもとにオブジェクトを生成する

Posted at

クラス名を元にオブジェクトを生成する例
Example example = (Example) (Class.forName(className).newInstance();

ポイント

  1. ClassクラスのforName()メソッドを用いてクラスオブジェクトを生成する
  2. String型の変数classNameでは、完全修飾クラス名を指定する
  3. 生成したクラスオブジェクトのnewInstance()メソッドを実行して、指定したクラス名のオブジェクトを得る
  4. 戻り値はObject型なので、キャストする
  5. InstantiationExceptionIllegalAccessException又はClassNotFoundExceptionの例外を発生する可能性があるので、例外処理をすること
0
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
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?