js: Array 소스 코드 편 깊이 들 어가 기 (1)
2602 단어 자바 script
1.push()
push () 는 배열 의 끝 에 하나 이상 의 요 소 를 추가 하고 새로운 길 이 를 되 돌려 줍 니 다.
push 원본 코드 는 다음 과 같 습 니 다.
// Appends the arguments to the end of the array and returns the new
// length of the array. See ECMA-262, section 15.4.4.7.
function ArrayPush() {
CHECK_OBJECT_COERCIBLE(this, "Array.prototype.push");
if (%IsObserved(this))
return ObservedArrayPush.apply(this, arguments);
var array = TO_OBJECT(this);
var n = TO_LENGTH_OR_UINT32(array.length);
var m = %_ArgumentsLength();
// It appears that there is no enforced, absolute limit on the number of
// arguments, but it would surely blow the stack to use 2**30 or more.
// To avoid integer overflow, do the comparison to the max safe integer
// after subtracting 2**30 from both sides. (2**31 would seem like a
// natural value, but it is negative in JS, and 2**32 is 1.)
if (m > (1 << 30) || (n - (1 << 30)) + m > kMaxSafeInteger - (1 << 30)) {
throw MakeTypeError(kPushPastSafeLength, m, n);
}
for (var i = 0; i < m; i++) {
array[i+n] = %_Arguments(i);
}
var new_length = n + m;
array.length = new_length;
return new_length;
}
이것 은 v8 의 소스 주소 538 줄 입 니 다. 여기 의 코드 는 비교적 간단 합 니 다. 소스 코드 에서 용법 을 알 수 있 습 니 다. 방법 에서 여러 개의 파 라 메 터 를 전달 할 수 있 고 매개 변수 길 이 는 2 의 30 번 을 초과 하지 않 습 니 다.
var arr = [1,2];
arr.push(3); //arr--->[1,2,3] return 3;
arr.push(4,5);//arr--->[1,2,3,4,5] return 5;
1.pop()
배열 의 마지막 요 소 를 삭제 하고 새로운 길 이 를 되 돌려 줍 니 다.
// Removes the last element from the array and returns it. See
// ECMA-262, section 15.4.4.6.
function ArrayPop() {
CHECK_OBJECT_COERCIBLE(this, "Array.prototype.pop");
var array = TO_OBJECT(this);
var n = TO_LENGTH_OR_UINT32(array.length);
if (n == 0) {
array.length = n;
return;
}
if (%IsObserved(array))
return ObservedArrayPop.call(array, n);
n--;
var value = array[n];
%DeleteProperty_Strict(array, n);
array.length = n;
return value;
}
이것 은 v8 의 소스 주소 497 줄 입 니 다. arr 길이 가 0 이면 undefined 로 돌아 갑 니 다.
var arr = [1,2];
arr.pop(); //arr--->[1] return 1
arr.pop(); //arr---->[] return 0;
arr.pop(); //arr---->[] return undefined
push (), pop () 기능 은 통용 된다.그것 은 그것 의 이 값 이 Array 대상 이 라 고 요구 하지 않 는 다.따라서 다른 유형의 대상 으로 옮 겨 방법 으로 사용 할 수 있다.함수 가 숙주 대상 에 성공 적 으로 적 용 될 수 있 는 지 여 부 는 실현 에 달 려 있다.
아르 바 이 트 를 구 합 니 다. 웹 개발 에 필요 한 것 이 있 으 면 저 에 게 연락 하 세 요. 생활 이 쉽 지 않 고 소중 합 니 다.블 로그 에 메 시 지 를 남 겨 주세요. 연락 드 리 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Thymeleaf 의 일반 양식 제출 과 AJAX 제출텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.