2018年5月23日

java集合框架之HashMap

摘要: 参考http://how2j.cn/k/collection/collection-hashmap/365.html#nowhere HashMap的键值对 HashMap储存数据的方式是—— 键值对 键不能重复,值可以重复 对于HashMap而言,key是唯一的,不可以重复的。 所以,以相同的ke 阅读全文

posted @ 2018-05-23 23:12 lijingran 阅读(330) 评论(0) 推荐(0) 编辑

java集合框架之ArrayList与LinkedList的区别

摘要: 参考http://how2j.cn/k/collection/collection-arraylist-vs-linkedlist/690.html#nowhere ArrayList和LinkedList的区别 ArrayList 插入,删除数据慢LinkedList, 插入,删除数据快Array 阅读全文

posted @ 2018-05-23 22:03 lijingran 阅读(308) 评论(0) 推荐(0) 编辑

java集合框架之LinkedList

摘要: 参考http://how2j.cn/k/collection/collection-linkedlist/370.html LinkedList 与 List接口 与ArrayList一样,LinkedList也实现了List接口,诸如add,remove,contains等等方法。 详细使用,请参 阅读全文

posted @ 2018-05-23 15:00 lijingran 阅读(219) 评论(0) 推荐(0) 编辑

java集合框架之ArrayList

摘要: 参考http://how2j.cn/k/collection/collection-arraylist/363.html 使用数组的局限性 一个长度是10的数据:Hero[] heroArr=new Hero[10]; 如果用数组存放数据,那么超过10的数据就放不下了 如果数据不足10个,那么数组空 阅读全文

posted @ 2018-05-23 14:57 lijingran 阅读(930) 评论(0) 推荐(0) 编辑

java泛型基础、子类泛型不能转换成父类泛型--未完待续

摘要: 参考http://how2j.cn/k/generic/generic-generic/373.html 1、使用泛型的好处:泛型的用法是在容器后面添加<Type>Type可以是类,抽象类,接口 2、泛型用T表示。T是type的缩写,也可以使用任何其他的合法的变量,比如A,B,X都可以,但是一般约定 阅读全文

posted @ 2018-05-23 09:55 lijingran 阅读(4231) 评论(0) 推荐(0) 编辑

导航