摘要: 1.模拟传统面向对象语言的状态模式实现 // Stopwatch类 状态机class Stopwatch { constructor() { this.button1 = null; this.button2 = null; this.resetState = new ResetState(this 阅读全文
posted @ 2018-12-13 17:34 rencoo 阅读(453) 评论(0) 推荐(0) 编辑