yield 실행 프로세스

1608 단어

yield 실행 프로세스

var g = function* () {
    console.log('before yield');
    yield console.log('yield');
    console.log('after yield');
};

var i = g();
console.log('before next');
i.next();
console.log('after next');

위의 실행 절차는 어떻게 출력됩니까?
"before next"
"before yield"
"yield"
"after next"

설명했듯이generator의 실행 절차는 g()로 실제 함수를 실행하지 않습니다.next()는 함수 이전에 끊어진 Yeild 왼쪽 표현식이나 함수의 맨 시작 위치인 위의 before Yeild에서 실행을 시작하여 Yield 오른쪽 표현식에 실행될 때까지 실행합니다. 그리고 오른쪽 표현식이 실행되면 프로그램은 이 함수에서 끊어지고 오른쪽 표현식의 결과를 되돌려서next() 실행 결과에 부여합니다.그리고 넥스트 () 에서 아래로 실행합니다.
그래서 위의 절차는 총괄적으로
  • next () 호출, 프로그램이 대응하는generator 함수를 되돌려주고 실행합니다
  • generator 함수의 위에서 끊어진 yield 왼쪽 표현식부터 실행합니다. 이것은 yield의 반환값을 yield 왼쪽의 변수에 부여하거나 함수의 처음부터 다음 yield 오른쪽 표현식까지 실행하고 오른쪽 표현식의 결과를 되돌려줍니다. 프로그램은 여기서 끊깁니다
  • next()가 되돌려주는 대상의value값은 yield 오른쪽 표현식의 결과값입니다
  • var g = function* () {
    
        yield console.log('first yielding');
        console.log('after first yield');
        yield console.log('secord yielding');
        console.log('after yield');
    };
    
    var i = g();
    console.log('before first next');
    i.next();
    console.log('after first next');
    i.next();
    

    위의 결론을 이용하면 아래의 결과를 매우 쉽게 얻을 수 있다
    "before first next"
    "first yielding"
    "after first next"
    "after first yield"
    "secord yielding"
    

    관건은 첫 번째next가 실행된 후에 첫 번째firstyielding을 던지고next로 되돌아와afterfirstnext를 실행하는 것이다

    좋은 웹페이지 즐겨찾기