es6 迭代器_揭秘ES6迭代器和迭代器

es6 迭代器

by Tiago Lopes Ferreira

由Tiago Lopes Ferreira

揭秘ES6迭代器和迭代器 (Demystifying ES6 Iterables & Iterators)

ES6 introduces a new way to interact with JavaScript data structures — iteration. Let’s demystify it.

ES6引入了一种与JavaScript数据结构进行交互的新方法- 迭代 。 让我们揭开神秘面纱。

There are 2 core concepts:

有两个核心概念:

  • Iterable — described by a data structure that provides a way to expose its data to the public. This is done by implementing a method whose key is Symbol.iterator. Symbol.iterator is a factory of iterators.

    可迭代 -由数据结构描述,该数据结构提供了将其数据公开给公众的方式。 这是通过实现键为Symbol.iterator的方法来Symbol.iteratorSymbol.iterator是迭代器的工厂。

  • Iterator — described by a structure that contains a pointer to the next element in the iteration.

    迭代器 -由包含指向迭代中下一个元素的指针的结构描述。

协议 (Protocol)

Both iterable and iterator follow a protocol that enables objects to be iterable:

可迭代和迭代器均遵循使对象可迭代的协议:

  • An interable must be an object with a function iterator whose key is Symbol.iterator.

    一个互操作对象必须是带有函数迭代器的对象,该函数的键为Symbol.iterator

  • An iterator must be an object with a function named next that returns an object with the keys: value — the current item in the iteration; and donetrue if the iteration has finished, false otherwise.

    迭代器必须是具有next函数的对象,该函数返回具有以下键的对象: value —迭代中的当前项; 并done -如果迭代已完成,则为true ,否则为false

可重复性 (Iterability)

Iterability follows the idea of data sources and data consumers:

可迭代性遵循数据源数据使用者的思想:

  • data sources— are the place from where data consumers get their data. For instance, an Array such as [1,2,3] is a data source structure that holds the data through which a data consumer will iterate (e.g. 1, 2, and 3). More examples are String, Maps and Sets.

    数据源 -是数据使用者从中获取数据的地方。 例如,诸如[1,2,3]类的Array是一种数据源结构,其中保存数据,数据使用者将通过该数据进行迭代(例如1, 2, and 3 )。 更多示例包括StringMapsSets

  • data consumers — are the what consume the data from data sources. For instance, the for-of loop is a data consumer able to iterate over an Array data source. More examples are the spread operator and Array.from.

    数据使用者 -消耗数据源中数据的对象。 例如, for-of循环是一个能够遍历Array数据源的数据使用者。 spread operatorArray.from是更多示例。

For a structure to be a data source, it needs to allow and say how its data should be consumed. This is done through iterators. Therefore, a data source needs to follow the iterator protocol described above.

为了使结构成为数据源 ,它需要允许并说出应如何使用其数据。 这是通过迭代器完成的。 因此, 数据源需要遵循上述迭代器协议。

However, it’s not practical for every data consumer to support all data sources, especially since JavaScript allows us to build our own data sources. So ES6 introduces the interface Iterable.

但是,每个数据使用者都不支持所有数据源是不切实际的,特别是因为JavaScript允许我们构建自己的数据源。 因此,ES6引入了Iterable接口

Data consumers consume the data from data sources through iterables.

数据使用者通过可迭代对象消耗数据源中的数据。

在实践中 (In Practice)

Let’s see how this works on a defined data source — Array.

让我们看看如何在定义的数据源Array

可迭代的数据源 (Iterable Data Sources)

We will use for-of to explore some of the data sources that implement the iterable protocol.

我们将使用for-of探索实现可迭代协议的一些数据源。

普通物体 (Plain Objects)

At this stage we need to say that plain objects are not iterable. Axel Rauschmayer does a great job explaining why on Exploring ES6.

在这一阶段,我们需要说普通对象是不可迭代的。 Axel Rauschmayer出色地解释了为什么要探索ES6 。

A brief explanation is that we can iterate over a JavaScript objects at two different levels:

一个简短的解释是,我们可以在两个不同的级别上遍历一个JavaScript对象:

  • program level — which means iterating over an object properties that represent it’s structure. For instance, Array.prototype.length, where length is related with the object’s structure and not it’s data.

    程序级别 –意味着遍历代表其结构的对象属性。 例如, Array.prototype.length ,其中length与对象的结构而不是数据有关。

  • data level — meaning iterating over a data structure and extracting its data. For instance, for our Array example, that would mean iterating over the array’s data. If array = [1,2,3,4], iterate over the values 1, 2, 3 and 4.

    数据级别 -意味着遍历数据结构并提取其数据。 例如,对于我们的Array示例,这意味着迭代数组的数据。 如果array = [1,2,3,4] ,则迭代值1, 2, 3 and 4

However, bringing the concept of iteration into plain objects means mixing-up program and data structures — Axel

但是,将迭代的概念引入普通对象意味着混合程序和数据结构 -Axel

The problem with plain objects is everyones’ ability to create their own objects.

普通对象的问题是每个人都可以创建自己的对象。

In our Hugo’s example how would JavaScript distinguish between the data level, i.e. Hugo.fullName, and the program level, i.e. Hugo.toString()?

在我们的Hugo例子中,JavaScript如何区分数据级别(即Hugo.fullName )和程序级别(即Hugo.toString()

While it is possible to distinguish between the two levels of iteration on well-defined structures, such as Arrays, it is impossible to do so for any object.

虽然可以在定义良好的结构(例如Arrays上区分两个迭代级别,但是对于任何对象都不可能做到这一点。

This is why we get iteration for free on Array (also on String, Map, and Set) but not on plain objects.

这就是为什么我们可以在Array (在StringMapSet )免费获得迭代,而在普通对象上不能免费获得迭代的原因。

We can, however, implement our own iterables.

但是,我们可以实现自己的可迭代对象。

实施可迭代 (Implement Iterables)

We can build our own iterables, although we usually use generators for that.

尽管我们通常为此使用生成器,但我们可以构建自己的可迭代对象。

In order to build our own iterable we need to follow the iteration protocol, which says:

为了构建自己的可迭代对象,我们需要遵循迭代协议,该协议指出:

  • An object becomes an iterable if it implements a function whose key is Symbol.iterator and returns an iterator.

    如果对象实现了键为Symbol.iterator的函数并返回iterator则该对象成为 iterator

  • The iterator itself is an object with a function called next inside it. next should return an object with two keys value and done. value contains the next element of the iteration and done a flag saying if the iteration has finished.

    iterator本身是一个对象,该对象内部具有一个称为next的函数。 next应该有两个键返回一个对象valuedonevalue包含迭代的下一个元素,并done了一个标志,指出迭代是否已完成。

(Example)

Our iterable implementation is very simple. We have followed the iterable protocol and on each iteration the for-of loop will ask the iterator for the next element.

我们的迭代实现非常简单。 我们遵循了可迭代的协议,并且在每次迭代中, for-of循环都会向迭代器询问next元素。

Our iterator will return on next an object containing the following by iteration:

next ,我们的迭代器将通过迭代返回一个包含以下内容的对象:

Please note that we switch the order of the our properties next and done for convenience. Having next first, it would break the implementation since we will first pop an element and then count the elements.

请注意,为了方便起见,我们next切换属性的顺序并done 。 首先拥有next一个,这将破坏实现,因为我们将首先弹出一个元素,然后对元素进行计数。

It is useful to know that done is false by default, which means that we can ignore it when that’s the case. The same is true for value when done is true.

知道默认情况下donefalse的,这很有用,这意味着在这种情况下我们可以忽略它。 当donetrue时, value也是true

We will see that in a minute.

我们将在一分钟内看到。

作为迭代器的迭代器 (Iterator as an Iterable)

We could build our iterator as an iterable.

我们可以将迭代器构建为可迭代的。

Please note that this is the pattern followed by ES6 built-in iterators.

请注意,这是ES6内置迭代器遵循的模式。

Why is this a useful?

为什么这很有用?

Although for-of only works with iterables, not with iterators, being the same means that we can pause the execution of for-of and continue afterwords.

尽管for-of仅适用于可迭代对象,不适用于迭代器,但相同意味着我们可以暂停for-of的执行并继续执行后记。

回程和掷球 (Return and Throw)

There are two optional iterator methods that we haven’t explore yet:

我们还没有探讨两种可选的迭代器方法:

Return

返回

return gives the iterator the opportunity to clean up the house when it breaks unexpectedly. When we call return on an iterator we are specifying that we don’t plan to call next anymore.

return给迭代器一个机会,当它意外崩溃时,它可以清理房子。 当我们在迭代器上调用return时,我们指定不打算再调用next了。

Throw

throw is only applied to generators. We will see that when we play with generators.

throw仅应用于生成器。 当我们使用生成器时,我们会看到这一点。

结论 (Conclusion)

ES6 brings iteration as a new way to iterate over JavaScript data structures.

ES6将迭代作为迭代JavaScript数据结构的新方法。

For iteration to be possible there are data producers, who contain the data, and data consumers, who take that data.

为了使迭代成为可能,需要有包含数据的数据生产者和获取数据的数据使用者

In order for this combination to work smoothly iteration is defined by a protocol, which says:

为了使此组合顺利运行,协议定义了迭代,该协议表示:

  • An iterable is an object that implements a function whose key is Symbol.iterator and returns an iterator.

    一个iterable是一个对象,该对象实现一个键为Symbol.iterator并返回iterator

  • An iterator is an object with a function called next inside it. next is an object with two keys value and done. value contains the next element of the iteration and done a flag saying if the iteration has finished.

    iterator是一个对象,其内部具有一个称为next的函数。 next是两个键对象valuedonevalue包含迭代的下一个元素,并done了一个标志,指出迭代是否已完成。

Plain objects are not iterable since there’s no easy way to distinguish between program and data level iteration.

普通对象是不可iterable因为没有简单的方法可以区分程序和数据级别的迭代。

That’s why ES6 offers a way to build our own iterators by following the iterator protocol.

这就是为什么ES6提供一种通过遵循iterator协议来构建自己的迭代iterator

谢谢 ? (Thanks to ?)

  • Axel Rauschmayer for his Exploring ES6 — Iteration

    Axel Rauschmayer的探索性ES6-迭代

  • Nicolás Bevacqua for his PonyFoo — ES6 Iterators in Depth

    尼古拉斯·贝瓦夸 ( NicolásBevacqua)的PonyFoo-深入研究ES6迭代器

  • To all The Simpsons fans

    致所有《辛普森一家》粉丝

Be sure to check out my other articles on ES6

请务必查看我有关ES6的其他文章

Let’s explore ES6 GeneratorsGenerators are an implementation of iterables.medium.freecodecamp.com

让我们探索一下ES6生成 生成 器是可迭代的实现。 medium.freecodecamp.com

翻译自: https://www.freecodecamp.org/news/demystifying-es6-iterables-iterators-4bdd0b084082/

es6 迭代器

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395270.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS之this与语句分号问题v(**V**)v

1 <script >2 //this知识 单词知识&#xff1a;property&#xff1a;属性 prototype&#xff1a;原型3 //*Q&#xff1a;什么是this&#xff1f;4 //*A&#xff1a;所有函数内部都有一个this&#xff0c;任何函数本质上都是通过某个对象来调用的&#xff0c;…

计算机联系函范文,致客户联络函

致客户联络函 相关内容:收到贵支部所发的“函调证明”通知&#xff0c;很高兴我校毕业生xxx同学能成为贵支部的党员发展对象&#xff0c;现对其在我校上学其间的表现证明如下&#xff1a;xxx&#xff0c;女&#xff0c;xxx年7月28日生&#xff0c;团员&#xff0c;XX年8月——X…

c语言堆栈基本代码入栈出栈_c语言的简单的进栈出栈

这个代码运行时只能输入4个以内的数有输出4个以上就没有输出了求大神看看#include#include#defineStack_Size50typedefstructSeqstack{intelem[Stack_Size];inttop...这个代码运行时只能输入4个以内的数有输出 4个以上就没有输出了 求大神看看 #include #include #define Stack…

P1401 城市(30分,正解网络流)

题目描述 N(2<n<200)个城市&#xff0c;M(1<m<40000)条无向边&#xff0c;你要找T(1<T<200)条从城市1到城市N的路&#xff0c;使得最长的边的长度最小&#xff0c;边不能重复用。 输入输出格式 输入格式&#xff1a; 第1行三个整数N,M,T用空格隔开。 第2行到…

sqlserver游标概念与实例全面解说

引言 我们先不讲游标的什么概念&#xff0c;步骤及语法&#xff0c;先来看一个例子&#xff1a; 表一 OriginSalary 表二 AddSalary 现在有2张表&#xff0c;一张是OriginSalary表--工资表&#xff0c;有三个字段0_ID 员工…

为什么Docker对初创企业有意义

by Charly Vega查理维加(Charly Vega) 为什么Docker对初创企业有意义 (Why Docker makes sense for startups) Docker is becoming the standard to develop and run containerized applications.Docker正在成为开发和运行容器化应用程序的标准。 Long ago, this piece of te…

MyEclipse中Maven Web项目部署路径设置

转载于:https://www.cnblogs.com/langzichanglu/p/10336805.html

小米电视联网后显示无法解析小米电视服务器,小米电视连上无线不能上网怎么回事?教你解决办法...

原标题&#xff1a;小米电视连上无线不能上网怎么回事&#xff1f;教你解决办法互联网电视凭借在线观看影视剧这个独有的优势受到越来越多家庭的喜爱。特别是配置不俗的小米电视&#xff0c;然而随之而来的的问题也让很多用户头疼&#xff0c;比如家里的小米电视突然上不了网了…

配置Server Side TAF

实验环境&#xff1a;Oracle 11.2.0.4 RAC1.为设置TAF在RAC集群上新建服务2.启动server_taf服务3.检查确认服务正在运行4.找到刚创建服务的service_id5.根据service_id审查服务的信息6.给服务添加server side failover参数7.再次审查服务可以看到Method, Type和Retries值8.检查…

fgets阻塞 stdin 退出_来自stdin问题的fgets[c]

我试过你的代码,但无法重现问题。以下代码的工作方式正是您所期望的,它会提示您输入名称,等待您键入名称,然后提示您输入地址,等等。我想知道你是否不需要在提示输入更多信息之前阅读stdin并清空它?typedef struct {char* name;char* address;}employeeRecord;int readrecord(…

2016.08.19

转载于:https://www.cnblogs.com/hiramlee0534/p/5789453.html

服务器上运行arp,服务器ARP病毒的特征及防护说明

服务器ARP病毒的特征及防护说明更新时间&#xff1a;2008年01月29日 15:50:33 作者&#xff1a;服务器ARP病毒的特征及防护说明近期有些用户反映服务器上所有网站被插入了病毒代码,但是这些病毒代码在服务器的源文件上并不能找到,因此,网管想清理病毒也无从下手,这是什么原因…

使用React Native进行气泡动画

by Narendra N Shetty由纳伦德拉N谢蒂(Narendra N Shetty) 使用React Native进行气泡动画 (Bubble animation with React Native) 使用Animated和PanResponder构建React Native应用程序时获得的经验教训 (Lessons learned while building a React Native App using Animated a…

Machine Learning from Start to Finish with Scikit-Learn

2019独角兽企业重金招聘Python工程师标准>>> Machine Learning from Start to Finish with Scikit-Learn This notebook covers the basic Machine Learning process in Python step-by-step. Go from raw data to at least 78% accuracy on the Titanic Survivors …

Excel 宏编码实现,指定列的字符串截取

1、打开Excel凭证&#xff0c;启用宏&#xff0c;ALTF11 或 菜单“视图”-"宏-查看宏" Sub 分割字符串1() Dim i As Integer Dim b() As String Dim length 用length表示数组的长度 Dim sublength Dim bb() As String 筛选日期 2 点 For i 2 To 20000 b() Split(Ce…

mysql for update 锁_MySql FOR UPDATE 锁的一点问题……

问题描述假设一个情况&#xff0c;这里只是假设&#xff0c;真实的情况可能不会这样设计&#xff0c;但是假如真的发生了....铁老大有一张这样的ticket表&#xff0c;用来存放北京到上海的票。iduidstart_addrend_addrbook_time11300009860上海北京1386666032120上海北京30上海…

服务器机房新风系统,某机房新风系统设计方案参考

《某机房新风系统设计方案参考》由会员分享&#xff0c;可在线阅读&#xff0c;更多相关《某机房新风系统设计方案参考(3页珍藏版)》请在人人文库网上搜索。1、某机房新风系统设计方案参考根据以上要求并结合中华人民共和国电子计算机机房的设计规范&#xff0c;为保证机房正压…

css 画三角形

CSS三角形绘制方法#triangle-up {width: 0;height: 0;border-left: 50px solid transparent;border-right: 50px solid transparent;border-bottom: 100px solid red;}#triangle-down {width: 0;height: 0;border-left: 50px solid transparent;border-right: 50px solid trans…

面试官面试前端_如何面试面试官

面试官面试前端by Aline Lerner通过艾琳勒纳(Aline Lerner) 如何面试面试官 (How to interview your interviewers) For the last few semesters, I’ve had the distinct pleasure of guest-lecturing MIT’s required technical communication class for computer science m…

shell 字符串分割

语法1: substring${string:start:len} string的下标从0开始&#xff0c;以start可是&#xff0c;截取len个字符&#xff0c;并赋值于substring 1 #!/bin/bash 2 #substr${string:start:len} 3 str"123456789" 4 substr${str:3:3} 5 echo $substr 6 7 输出&#xff1…