> 웹 프론트엔드 > JS 튜토리얼 > JavaScript 객체 - 얕은 동결과 깊은 동결

JavaScript 객체 - 얕은 동결과 깊은 동결

DDD
풀어 주다: 2024-12-27 06:30:11
원래의
550명이 탐색했습니다.

JavaScript Object - Shallow freeze vs Deep freeze

얕은 동결깊은 동결의 차이점은 중첩된 개체에 동결 동작이 적용되는 방식에 있습니다. 두 가지 개념에 대한 분석은 다음과 같습니다.


1. 얕은 동결

  • 정의: 개체의 최상위 속성만 고정합니다.
  • 행동:
    • 최상위 속성의 추가, 제거 또는 수정을 방지합니다.
    • 중첩된 개체를 고정하지 않습니다. 변경 가능한 상태로 유지됩니다.
  • :
const shallowObject = {
    name: "Alice",
    details: { age: 25, city: "New York" },
};

Object.freeze(shallowObject);

// Top-level properties are immutable
shallowObject.name = "Bob"; // Ignored
shallowObject.newProp = "test"; // Ignored

// Nested objects are still mutable
shallowObject.details.age = 30; // Allowed

console.log(shallowObject);
// Output: { name: "Alice", details: { age: 30, city: "New York" } }
로그인 후 복사
로그인 후 복사

2. 급속냉동

  • 정의: 중첩된 모든 개체 및 배열과 함께 개체를 재귀적으로 고정합니다.
  • 행동:
    • 객체의 어떤 부분(최상위 또는 중첩)도 수정할 수 없도록 합니다.
  • :
const deepObject = {
    name: "Alice",
    details: { age: 25, city: "New York" },
};

// Deep freeze function
function deepFreeze(object) {
    const propertyNames = Object.getOwnPropertyNames(object);
    for (const name of propertyNames) {
        const value = object[name];
        if (value && typeof value === 'object') {
            deepFreeze(value); // Recursively freeze
        }
    }
    return Object.freeze(object);
}

deepFreeze(deepObject);

// Neither top-level nor nested properties can be changed
deepObject.name = "Bob"; // Ignored
deepObject.details.age = 30; // Ignored

console.log(deepObject);
// Output: { name: "Alice", details: { age: 25, city: "New York" } }
로그인 후 복사

비교표

기능 얕은 동결 급냉동
Feature Shallow Freeze Deep Freeze
Scope Only freezes top-level properties. Freezes top-level and nested objects.
Nested Object Mutability Mutable. Immutable.
Implementation Object.freeze(object). Custom recursive function with Object.freeze().
Example Mutation Modifications to nested objects are allowed. No modifications allowed at any level.
범위 최상위 속성만 고정합니다. 최상위 개체와 중첩 개체를 고정합니다. 중첩 객체 변경 가능성 변경 가능. 불변. 구현 Object.freeze(객체). Object.freeze()를 사용한 사용자 정의 재귀 함수. 변이 예시 중첩된 개체에 대한 수정이 허용됩니다. 어떤 수준에서도 수정이 허용되지 않습니다.

사용 사례

  1. 얕은 동결:

    • 최상위 속성만 변경 불가능해야 하는 경우에 적합합니다.
    • 예: 중첩된 속성이 독립적으로 관리되는 구성
  2. 급냉동:

    • 전체 개체 계층 구조에 완전한 불변성이 필요할 때 이상적입니다.
    • 예: 상태 관리에서 깊게 중첩된 개체에 대한 데이터 일관성을 보장합니다.

고려사항

  • 성능:
    • 깊은 동결은 크거나 깊이 중첩된 객체의 경우 계산 비용이 많이 들 수 있습니다.
  • 순환 참조:
    • 객체에 순환 참조가 포함된 경우 무한 재귀를 피하기 위해 방문한 객체를 추적해야 합니다.

순환 참조 처리

순환 참조를 처리하기 위해 방문 객체의 WeakSet을 유지할 수 있습니다.

const shallowObject = {
    name: "Alice",
    details: { age: 25, city: "New York" },
};

Object.freeze(shallowObject);

// Top-level properties are immutable
shallowObject.name = "Bob"; // Ignored
shallowObject.newProp = "test"; // Ignored

// Nested objects are still mutable
shallowObject.details.age = 30; // Allowed

console.log(shallowObject);
// Output: { name: "Alice", details: { age: 30, city: "New York" } }
로그인 후 복사
로그인 후 복사

이것은 순환 참조의 무한 재귀를 방지합니다.

위 내용은 JavaScript 객체 - 얕은 동결과 깊은 동결의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿