IP属地:上海
工厂方法模式的定义 工厂方法模式使用的频率非常高。Define an interface for creating an object, but...
单例模式的定义 Ensure a class has only one instance, and provide a global point...
第8条:覆盖equals时请遵守通用约定 (Item 8: Obey the general contract when overriding ...
第1条:考虑用静态工厂方法代替构造器 (Consider static factory methods instead of construct...
单一职责原则 单一职责原则的英文名称是Single Responsibility Principle,简称是SRP。 单一职责原则的定义是:应该...
实践1:参数以by value方式而非by reference方式传递 Java中的参数以by value方式传递,举个例子: 以上代码的输出为...