摘要: 一、HashMap,TreeMap差别 1.两种常规Map性能 HashMap:适用于在Map中插入、删除和定位元素。 Treemap:适用于按自然顺序或自定义顺序遍历键(key)。 2.总结 HashMap通常比TreeMap快一点(树和哈希表的数据结构使然),建议多使用HashMap,在需要排序 阅读全文
posted @ 2017-03-15 23:40 Rainyn 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 一、HashSet 1.HashSet存字符串 import java.util.*;class Student { String id; String name; public Student(String id,String name) { // 创建构造方法 this.id=id; this. 阅读全文
posted @ 2017-03-15 17:36 Rainyn 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 因为它是Object里面已经有了的方法,而所有类都是继承Object,所以“所有对象都有这个方法”。 它通常只是为了方便输出,比如System.out.println(xx),括号里面的“xx”如果不是String类型的话,就自动调用xx的toString()方法 总而言之,它只是sun公司开发ja 阅读全文
posted @ 2017-03-15 17:21 Rainyn 阅读(13048) 评论(0) 推荐(0) 编辑
摘要: 一、 ListIterator http://www.tuicool.com/articles/b6FFzyM 二、Enumeration http://www.runoob.com/java/collection-enumeration.html 三、iterator iterator 删除 给出 阅读全文
posted @ 2017-03-15 13:47 Rainyn 阅读(223) 评论(0) 推荐(1) 编辑
摘要: 参考: http://www.cnblogs.com/skywang12345/tag/collection/ Iterator和ListIterator区别 Iterator迭代器和Iterable的关系 1、Collection接口 2.List 2.1 ArrayList集合 2.2 Link 阅读全文
posted @ 2017-03-15 00:17 Rainyn 阅读(199) 评论(0) 推荐(0) 编辑