摘要:
下载界面:http://maven.apache.org/download.cgi当前下载:apache-maven-3.2.5-bin.zip解压到:/usr/lib/jvm/apache-maven-3.2.5修改配置文件:y@y:~$ sudo vim /etc/profile#Maven3e... 阅读全文
摘要:
Item4:Enforce noninstantiability with a private constructor通过构造私有化,禁止对象被实例化。public class UtilClass { private UtilClass(){ //防止类内的函数调用构造函... 阅读全文
摘要:
Item3:Enforce the singleton property with a private constructor or an enum type采用枚举类型(ENUM)实现单例模式。public enum Elvis { INSTANCE; public void ... 阅读全文
摘要:
Item2:Consider a builder when faced with many constructor parameters当构造方法有多个参数时,可以考虑使用builder方式进行处理。实例代码:public class NutritionFacts { private fina... 阅读全文