私はケージクラスを持っています:
public class Cage<T extends Animal> {
// the construtor takes in an integer as an explicit parameter
...
}
別のクラスのメイン メソッドで Cage のオブジェクトをインスタンス化しようとしています。
private Cage cage5 = new Cage(5);
エラーが表示されます: Cage is a raw type. ジェネリック型 Cage への参照は、パラメーター化する必要があります。私はいくつかのアイデアを試しましたが、このトリッキーな構文に行き詰まっています:o(