摘要: HashSet需要重写equals和hashCode TreeSet需要重写equals和compareTo 两个函数返回的结果应该一致 一般情况下,HashSet和TreeSet中只放入不可变对象,final修饰属性 new Comparator(){ public int compare(Object o1,Object o2){ …… } }匿名类可作为TreeSet参数 com... 阅读全文
posted @ 2013-03-09 01:27 laputastar 阅读(923) 评论(0) 推荐(1) 编辑