标签:地址 资源 remove ring 构造 htm 版本 情况 ros
最近阿里巴巴在网上发布了《阿里巴巴Java开发手册》,自己看了看,有一些还是容易忽略。所以我把它里面集合操作规范以及自己觉得容易忽略的写了下来,免得自己忘了。
2.1 关于hashCode与equals的处理,规则如下:
@Override public boolean equals(Object obj) { if(this == obj){ return true; } if(obj instanceof People){ People people = (People) obj; return Objects.equals(people.getHeight(),height); } return false; }
2.2 List接口的subList()方法
2.3 使用集合转数组,必须使用 T[] toArray(T[] array)方法
1 List<String> list = new ArrayList<>(2); 2 list.add("hello"); 3 list.add("world"); 4 String[] array = new String[list.size()]; 5 array = list.toArray(array);
2.4 数组转集合使用Arrays.asList()方法
2.5在 JDK7 版本以上, Comparator 要满足自反性,传递性,对称性。
说明:
1) 自反性: x, y 的比较结果和 y, x 的比较结果相反。
2) 传递性: x>y,y>z,则 x>z。
3) 对称性: x=y,则 x,z 比较结果和 y, z 比较结果相同。
1 class PeopleComparator implements Comparator<People>{ 2 @Override 3 public int compare(People o1, People o2) { 4 return o1.getAge() > o2.getAge() ? 1 : 5 (o1.getAge() == o2.getAge() ? 0 : -1); 6 } 7 }
2.6在使用集合,如果有指定容量的构造方法,则最好指定容量。避免扩容带来的资源消耗
2.7注意 Map 类集合 K/V 能不能存储 null 值的情况
集合类 | Key | Value | Super | 说明 |
---|---|---|---|---|
Hashtable | 不允许为 null | 不允许为 null | AbstractMap | AbstractMap |
TreeMap | 不允许为 null | 允许为 null | AbstractMap | 线程不安全 |
HashMap | 允许一个为 null | 允许为 null | AbstractMap | 线程不安全 |
ConcurrentHashMap | 不允许为 null | 不允许为 null | AbstractMap | 分段锁技术 |
反例: 由于HashMap的干扰,很多人认为ConcurrentHashMap是可以置入null值,注意存储null 值时会抛出 NPE 异常。
2.8合理利用好集合的有序性(sort)和稳定性(order),避免集合的无序性(unsort)和不稳定性(unorder)带来的负面影响。
说明: 稳定性指集合每次遍历的元素次序是一定的。有序性是指遍历的结果是按某种比较规则依次排列的。如: ArrayList 是 order/unsort; HashMap 是 unorder/unsort; TreeSet 是order/sort。
2.9利用 Set 元素唯一的特性,可以快速对一个集合进行去重操作,避免使用 List 的contains 方法进行遍历、对比、 去重操作。
标签:地址 资源 remove ring 构造 htm 版本 情况 ros
原文地址:http://www.cnblogs.com/maying3010/p/6506141.html