22
22

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.

拡張for文のちょっと便利な使い方

Last updated at Posted at 2016-04-27

Java 7 以上で確認した.次のようなクラスA, B, Xがあるとする。

public class A {
}
public class B<T> extends A {
}
public class X {
    public static <Z extends A> java.util.List<Z> get(Class<Z> clazz) {
        // dummy implementation
        return new ArrayList<Z>(); // ArrayList<>() is also valid in case of Java 8.
    }
}

このとき、X#get()を用いてBのインスタンスのリストを取得するために以下のように書こうとすると、

List<B<?>> list = X.get(B.class);

次のコンパイルエラーになる。List<B<?>> へのキャストもできない。

Type mismatch: cannot convert from List<B> to List<B<?>>

ところが、以下のように拡張For文を用いてリストの要素を1つずつ取得すると、コンパイルエラーも警告も出なくなる。
フレームワークを作成する場合に少し便利なイディオムである。

for (B<?> b : X.get(B.class)) {
    // do something with b.
}
22
22
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
22
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?