4
3

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.

Generics と Class#forName

Last updated at Posted at 2012-04-06

Foo クラスを継承している FooSubclass クラスの Class オブジェクトを取得するときに
どうすれば警告でなくなるのかと悩んでいた。
http://www.velocityreviews.com/forums/t149816-generics-and-forname.html に書いてあった。
回答みたら API 見ればわかることだったorz

ClassForNameSample.java
Class<? extends Foo> clazz = Class.forName("FooSubclass").asSubclass(Foo.class);
4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?