```js class EventEmitter { constructor(){ } // 监听事件 on(){ } // 触发事件 emit(){ } // 只监听一次,下次emit不会触发 once(){ } // 移除事件 off(){ } } ```