Generator使用场景:为不具备Interator接口的对象提供了遍历操作(只要有Symbol.iterator方法/Interator接口,就可以调用该方法生成一个遍历器)
for…in可以遍历对象,for…of不能遍历对象,只能遍历带有iterator接口的
next方法
可以将next看成是一个指针,yield是打断点。yield本身没有返回值,next方法所带的参数会作为上一个yield表达式的返回值。
function* add(){
let x = yield '2';
console.log(x); //x=20
let y = yield '3';
console/log(y); /y=30
return x+y;
}
const fn=add();
console.log(fn.next()); //value:2 done:false
console.log(fn.next(20)); //value:3 done:false 本句next语句执行完毕,20作为第一句yield的返回值传给x
console.log(fn.next(30)); //value:50 done:true 本句next语句执行完毕,30作为第一句yield的返回值传给y,此时返回x+y=50 到达return语句,done=true