function *foo(x) {
/*1*/ var y = 2 * (yield (x + 1));
/*2*/ var z = yield (y / 3);
/*3*/ return (x + y + z);
}
var it = foo( 5 );
// note: not sending anything into `next()` here
console.log( it.next() ); // { value:6, done:false }
console.log( it.next( 12 ) ); // { value:8, done:false }
console.log( it.next( 13 ) ); // { value:42, done:true }
第一次next(),{ value:6, done:false }
第二次next(12),我以为函数应该执行到2那里,然后 var y = 2 * 6
....
看来我是没有明白,求打醒。
如果把yeild看成是可以接收send的数据,好像又可以走通了。
1
yangff 2015-05-04 11:38:23 +08:00
x = 5
y = 2 * 12 // => 24 y / 3 // => 8 z = 13 x + y + z = 5 + 24 + 13 // => 42? |
3
coolicer OP |