工厂模式
思想:用于批量创建相似对象 或 完成相似功能。
class A {}
function factory() {
return new A();
}
建造者
思想:将复杂功能模块拆分,再组合起来。
class Editor {
this.text = new Text();
this.img = new Img();
this.action = new Action();
}
class Text{}
class Img {}
class Action{}
单例模式
思想:全局有且只有一个实例。
class A {
getInstance() {
if (this.instance) {
return this.instance;
}
return (this.instance = new A());
}
}