xiexuan-star

Results 2 comments of xiexuan-star

### 看了半天发现大家都是用队列来做的吗- - ``` `class LazyManFactory { constructor(name) { this.name = name this.sayHi() this.sleepTime = 0 } sayHi () { console.log(`Hi I am ${this.name}`) } sleep (time) { process.nextTick(() =>...