說明
1、通配符? super Frui限定了泛型下界為 Fruit。
2、Generic
實例
Generic<Fruit> fruitGeneric2 = new Generic<>(); print2(fruitGeneric2); Generic<Food> foodGeneric2 = new Generic<>(); print2(foodGeneric2); // 错误使用 // Generic<Apple> appleGeneric2 = new Generic<>(); // print2(appleGeneric2);
以上是java方法參數中通配符如何使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!