微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – for..of和迭代器状态

考虑一下这个 python代码
it = iter([1,2,3,4,5])

for x in it:
    print x
    if x == 3:
        break

print '---'

for x in it:
    print x

它打印1 2 3 — 4 5,因为迭代器会记住它在循环中的状态.当我在JS中看似相同的事情时,我得到的只是1 2 3 —.

function* iter(a) {
    yield* a;
}

it = iter([1,5])

for (let x of it) {
    console.log(x)
    if (x === 3)
        break
}

console.log('---')

for (let x of it) {
    console.log(x)
}

我错过了什么?

解决方法

不幸的是,JS中的Generator对象不可重用.
MDN清楚地说明

Generators should not be re-used,even if the for…of loop is terminated early,for example via the break keyword. Upon exiting a loop,the generator is closed and trying to iterate over it again does not yield any further results.

原文地址:https://www.jb51.cc/js/151048.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐