Introduction Iterator is a design pattern that can traverse container objects such as linked lists and arrays without worrying about the implementation details of memory allocation of container objects. The simple understanding is that we can get the data one by one, like a moving pointer, but it will tell us when it ends. In this way, we can do what we need to do after getting the data. What does an iterator look like in jsIn JavaScript, an iterator is a special object. This iterator object has a next() method, and each call returns an object (result object). The result object has two attributes: one is value, which indicates the next value to be returned; the other is done, which is a Boolean value. If the last value in the sequence has been iterated, it is true. The iterator also saves an internal pointer to the position of the value in the current collection. Each call to the next() method returns the next available value, similar to the structure of the object below. { next: function () { return { value:'', done: true / false } } } Iteration ProtocolAs the capabilities of the JavaScript language continue to improve, some new data types have been added, such as Map, Set, WeakMap, etc. In order to allow these different data structures to be iterated in a unified manner, es6 has added the iteration protocol. The iteration protocol is not a new built-in implementation or syntax; it is a protocol. These protocols can be implemented by any object that follows certain conventions. The iteration protocol is specifically divided into two protocols: the iterable protocol and the iterator protocol. The simple understanding is that in js, any object can be traversed as long as it satisfies the iteration protocol. Iterable ProtocolTo be iterable, an object must implement the @@iterator method. This means that the object (or an object in its prototype chain) must have a property with the key @@iterator, accessible via the constant Symbol.iterator: Simply put, if you want something to be traversable, then it must have an @@iterator, which can be accessed through Symbol.iterator
Iterator ProtocolThe iterator protocol defines a standard way to produce a sequence of values, whether finite or infinite. When the value is finite, a default return value will be returned after all values have been iterated. An object conforms to the iterator protocol only if it implements a next() method with the following semantics:
Iterative processWhen an object needs to be iterated (for example, when it is written into a for...of loop), first, its @@iterator method is called without parameters ( the structure returned at this time is { next: function () { }} ), and then the iterator returned by this method is used to obtain the value to be iterated (in fact, it is just calling this next() method repeatedly) Iteration SummaryThe iteration protocol can be summarized as follows: to traverse something, it must satisfy the iterable protocol and the iterator protocol.
In other words, the iterator object is essentially a pointer object. The pointer is moved through the next() method of the pointer object. Custom IterationObjects do not implement iterators, so objects cannot be traversed. In order to implement object traversal, we need to implement the iterator mentioned above on the object. There are usually two ways of writing. One is the traditional way of writing, which requires you to control the internal state yourself. The other is to use the iterator of the Generator returned by the generator function to implement it. The code is as follows: Traditional writinglet obj = { name: 'joel', adress: 'gz', [Symbol.iterator]: () => { // Don't use this here, because it is return fn, this will be lost let index = -1, atrrList = Object.keys(obj); const objIterator = { next: () => { let result = '' index++ if (index < atrrList.length) { result = { value: atrrList[index], done: false } } else { result = { done: true } } return result } } return objIterator } } for (const item of obj) { console.log('atrrs:' + item + ',value:' + obj[item]) } Generator function writing// Add an iterator for a non-iterable object let obj = { a: 1, b: 2 } obj[Symbol.iterator] = function* () { let keys = Object.keys(obj); //Get the length of the key value let len = keys.length; //Define loop variable let n = 0; //Conditional judgment while (n <= len - 1) { yield { k: keys[n], v: obj[keys[n]] }; n++ } } //The returned value is the key and value of an object for (let { k, v } of obj) { console.log(k, v); } For other related information such as built-in iterable objects, syntax for iterable objects, built-in APIs that accept iterable objects, etc., please click here This is the end of this article about learning javascript iterators. For more relevant javascript iterator content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Linux system dual network card binding configuration implementation
>>: How to use the Fuser command in Linux system
Table of contents 1. JavaScript uses canvas in HT...
After installing Docker on the Linux server, Pull...
This article shares the specific code of vue echa...
Copy code The code is as follows: <html> &l...
Table of contents Mixin Mixin Note (duplicate nam...
Table of contents Show Me The Code Test the effec...
1. Font properties color, specifies the color of ...
Table of contents Project Introduction: Project D...
Table of contents SQL execution order bin log Wha...
You may remember that in the past articles we hav...
String extraction without delimiters Question Req...
1. HTML Overview htyper text markup language Hype...
When I wrote the Redis book and the Spring Cloud ...
Today I will introduce the most basic functions of...
It is also very simple to deploy Django projects ...