说明
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中文网其他相关文章!