これは大丈夫ではありません
List<List<? extends Number>> a;
List<List<Integer>> b;
a = b;
これは大丈夫です
List<? extends Number> c;
List<Integer> d;
c = d;
どうすれば最初のものをコンパイルできますか?
これは大丈夫ではありません
List<List<? extends Number>> a;
List<List<Integer>> b;
a = b;
これは大丈夫です
List<? extends Number> c;
List<Integer> d;
c = d;
どうすれば最初のものをコンパイルできますか?