Learn javascript iterator

Learn javascript iterator

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 js

In 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 Protocol

As 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 Protocol

To 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

property

value

[Symbol.iterator]

A function with no arguments that returns an object that conforms to the iterator protocol.

Iterator Protocol

The 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:

property

value

next

A function with no parameters that returns an object that should have the following two properties:

done (boolean)

The next() method must return an object with two properties: done and value. If a non-object value (such as false or undefined) is returned, an exception will be thrown ("iterator.next() returned a non-object value").

Iterative process

When 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 Summary

The iteration protocol can be summarized as follows: to traverse something, it must satisfy the iterable protocol and the iterator protocol.

  • Iterable protocol: This object must have an @@iterator, which can be accessed through Symbol.iterator
  • Iterator protocol: It is an object whose next() function returns an object with two attributes: value and done (boolean, whether it is the last element. When done is true, value can be omitted).

In other words, the iterator object is essentially a pointer object. The pointer is moved through the next() method of the pointer object.

Custom Iteration

Objects 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 writing

let 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:
  • JavaScript design pattern iterator pattern
  • The meaning and usage of JavaScript iterators
  • JavaScript design pattern iterator pattern
  • JavaScript Array Iteration Methods
  • Detailed explanation of Javascript iterators and iterative interfaces

<<:  Linux system dual network card binding configuration implementation

>>:  How to use the Fuser command in Linux system

Recommend

Vue echarts realizes dynamic display of bar chart

This article shares the specific code of vue echa...

Example code of javascript select all/unselect all operation in html

Copy code The code is as follows: <html> &l...

Web project development VUE mixing and inheritance principle

Table of contents Mixin Mixin Note (duplicate nam...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

Detailed introduction to CSS font, text, and list properties

1. Font properties color, specifies the color of ...

Super detailed tutorial to implement Vue bottom navigation bar TabBar

Table of contents Project Introduction: Project D...

Summary of MySQL log related knowledge

Table of contents SQL execution order bin log Wha...

MySQL string splitting example (string extraction without separator)

String extraction without delimiters Question Req...

Summary of HTML knowledge points for the front end (recommended)

1. HTML Overview htyper text markup language Hype...

Teach you how to install docker on windows 10 home edition

When I wrote the Redis book and the Spring Cloud ...

Beginner's guide to building a website ⑥: Detailed usage of FlashFXP

Today I will introduce the most basic functions of...

Example of how to deploy a Django project using Docker

It is also very simple to deploy Django projects ...