博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java <? super Fruit>与<? extends Fruit>
阅读量:5886 次
发布时间:2019-06-19

本文共 629 字,大约阅读时间需要 2 分钟。

package Test2016;import java.util.ArrayList;import java.util.List;public class Test2016 {	public static void main(String[] args) {				List
first = new ArrayList
(); //Fruit -> Apple first.add(new Apple()); first.add(new Fruit()); first.add(new RedApple()); // first.add(new Food()); //error System.out.println(first.get(0)); System.out.println(first.get(1)); List
second = new ArrayList
(); second.add(null); } }class Food {}class Fruit extends Food {}class Apple extends Fruit {}class RedApple extends Apple {}

 

转载于:https://www.cnblogs.com/JimLy-BUG/p/5215749.html

你可能感兴趣的文章
Android github 快速实现多人协作
查看>>
SAP S/4 HANA新变化-SD销售与分销
查看>>
winform 窗体实现增删改查(CRUD)窗体基类模式
查看>>
MySQL · 特性分析 · 数据一样checksum不一样
查看>>
CIO的责任不仅仅是信息管理
查看>>
vs2015 Xamarin.Android安装
查看>>
SpringMVC空字符串转为null
查看>>
我需要完全理解这部分代码才能确保它能够正常工作,如果由我来修复代码中的问题,我是不会这么写的,因此希望你也不要这么来写(转)...
查看>>
Spark_SQl
查看>>
查看光纤卡的WWN号
查看>>
【百度地图API】如何在地图上添加标注?——另有:坐标拾取工具+打车费用接口介绍...
查看>>
机器学习之梯度下降法
查看>>
笔记本外接2-3个屏幕
查看>>
SDL2.0教程翻译&#183;目录
查看>>
嵌入式 Linux进程含义知多少
查看>>
类加载器的双亲委派及打破双亲委派
查看>>
Docker入门教程(二)命令
查看>>
python中多线程与非线程的执行性能对比
查看>>
R3 Corda 1.0即将问世,创想本地硬件和云端存储混合的未来
查看>>
安全市场风云变幻 Sophos发力移动和云
查看>>