摘要:
OpenResty Installation Find tar.gz : https://openresty.org/cn/download.html use which nginx to ensure nginx command is directing to /usr/local/openres 阅读全文
摘要:
[Effective Java] 创建和销毁对象篇 1. 优先考虑用静态工厂方法代替构造器 优点: - 静态工厂方法相比于构造器,它们有名称 - 不需要每次在使用的时候创建一个对象 - 可以返回原返回类型的任何子类型的对象 - 在创建参数化是来的时候,代码更加简洁 缺点: - 不能被子类化(因为鼓励 阅读全文