设计模式-工厂模式
Posted yzyh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计模式-工厂模式相关的知识,希望对你有一定的参考价值。
class Product{//构造函数
constructor(name){
this.name = name
}
init(){
console.log('init')
}
fun1(){
console.log('fun1')
}
fun2(){
console.log('fun2')
}
}
class Creator{//工厂函数
create(name){
return new Product(name)
}
}
//测试
let creator = new Creator()
let p = creator.create('p')
p.init()
p.fun1()
p.fun2()
以上是关于设计模式-工厂模式的主要内容,如果未能解决你的问题,请参考以下文章
设计模式简单工厂模式 ( 简介 | 适用场景 | 优缺点 | 代码示例 )