文件名称:design-patterns-in-es6:ES6中的设计模式集合
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-02 11:03:35
JavaScript
ES6中的设计模式 让我们从最常用的模式开始。 工厂 工厂模式用于替换类构造函数,抽象了对象生成的过程,以便可以在运行时确定实例化的对象的类型。 const Country = { Chinese : 'Chinese' , UnitedStates : 'UnitedStates' , UK : 'UK' , Greece : 'Greece' , } class CurrencyDescribing { constructor ( symbol , code ) { this . symbol = symbol ; this . code = code ; } } class ChineseRMB extends CurrencyDescribing { constructor ( ) {
【文件预览】:
design-patterns-in-es6-master
----src()
--------behavioral()
--------creational()
--------structural()
----doc()
--------readme.cn.md(5KB)
----README.md(6KB)