TreeSet是依靠TreeMap来实现的. TreeSet是一个有序集合,TreeSet中的元素将按照升序排列,缺省是按照自然排序进行排列,意味着TreeSet中的元素要实现Comparable接口. 或者有一个自定义的比较器.我们可以在构造TreeSet对象时,传递实现Comparator接口的比较器对象. 举例: public class TreeSetTest { public static void main(String[] args) { Set ts = new TreeSet(…
S.O.L.I.D 是面向对象设计(OOD)和面向对象编程(OOP)中的几个重要编码原则(Programming Priciple)的首字母缩写.面向对象设计的原则SRP The Single Responsibility Principle 单一职责原则OCP The Open Closed Principle 开放封闭原则LSP The Liskov Substitution Principle 里氏替换原则ISP The Interface Segregation Principle 接口…