當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript Object.freeze( )用法及代碼示例


JavaScript中的對象和對象構造函數?
在麵向對象編程的生活世界中,我們已經知道類和對象的重要性,但是與其他編程語言不同,JavaScript沒有其他語言所具有的傳統類。但是JavaScript具有對象和構造函數,它們在大多數情況下以相同的方式工作以執行相同的操作。

  • 構造函數是與“new”關鍵字一起使用的常規JavaScript函數。構造函數在JavaScript中有兩種類型,即內置構造函數(數組和對象)和自定義構造函數(定義特定對象的屬性和方法)。
  • 當我們需要一種創建可以多次使用而不必每次都重新定義對象的對象“type”時,構造函數會很有用,這可以使用Object Constructor函數來實現。按照慣例,大寫的構造函數名稱會將其與常規函數區分開。

例如,考慮以下代碼:

function Automobile(color) {
  this.color=color;
}

var vehicle1 = new Automobile ("red");

函數“Automobile()”是一個對象構造函數,其屬性和方法即“color”在其內部聲明為關鍵字“this”。然後使用關鍵字“new”將使用對象構造函數定義的對象轉換為即時對象。


調用新的Automobile()時,JavaScript執行以下兩項操作:

  1. 它創建一個新的新對象(實例)Automobile()並將其分配給變量。
  2. 它將對象的構造函數屬性“color”設置為Automobile。

Object.freeze()方法
在對象構造器方法中,有一個方法Object.freeze()用於凍結對象。凍結對象不允許將新屬性添加到對象,並防止刪除或更改現有屬性。 Object.freeze()保留對象的可枚舉性,可配置性,可寫性和原型。它返回傳遞的對象,並且不創建凍結副本。

應用範圍:

  • Object.freeze()用於凍結對象和數組。
  • Object.freeze()用於使對象不可變。

用法:

Object.freeze(obj)

使用的參數:

  1. obj:這是必須凍結的對象。

返回值:
Object.freeze()返回傳遞給該函數的對象。

下麵提供上述函數的示例。

例子:

Input : const obj1 = { property1: 'initial_data'};
        const obj2 = Object.freeze(obj1);
        obj2.property1 = 'new_data';
        console.log(obj2.property1);

Output : "initial_data"

說明:在此示例中,已為對象“ obj2”分配了對象“ obj1”的屬性,並且凍結了“ obj1”的屬性,因此防止了新的屬性和值添加到“ obj2”。

Input : var obj = { prop: function() {}, name: 'adam' };
        console.log(obj);
        obj.name = 'billy';
        delete obj.prop;
        console.log(obj);
        var o = Object.freeze(obj);
        obj.name = 'chris';
        console.log(obj);

Output : Object { prop: function () {}, name: "adam" }
         Object { name: "billy" }
         Object { name: "billy" }

說明:在此示例中,對象“obj”被分配了“ prop:function”,由於未凍結對象“ obj”,該對象後來被刪除。之後,已為新對象“o”分配了“obj”的凍結值,這阻止了它的進一步更新。


下麵提供了上述函數的代碼。

代碼1:

<script> 
<!-- creating an object constructor and assigning values to it -->
const obj1 = { property1: 'initial_data'}; 
  
<!--creating a second object which will freeze the properties of the first object-->
const obj2 = Object.freeze(obj1); 
  
<!-- Updating the properties of the frozen object -->
obj2.property1 = 'new_data'; 
  
<!-- Displaying the properties of the  frozen object -->
console.log(obj2.property1); 
</script>

輸出:

"initial_data"

代碼2:

<script> 
<!-- creating an object constructor and assigning values to it -->
var obj = { prop: function() {}, name: 'adam' }; 
  
<!-- Displaying the properties of the object created -->
console.log(obj); 
  
<!-- Updating the properties of the object -->
obj.name = 'billy'; 
delete obj.prop; 
<!-- Displaying the updated properties of the object -->
console.log(obj); 
  
<!-- Freezing the object using object.freeze() method> 
var o = Object.freeze(obj); 
  
<!-- Updating the properties of the frozen object -->
obj.name = 'chris'; 
  
<!-- Displaying the properties of the  frozen object -->
console.log(obj); 
  
</script>

輸出:

Object { prop: function () {}, name: "adam" }
Object { name: "billy" }
Object { name: "billy" }

異常:

  • 如果傳遞的參數不是對象,則會導致TypeError。

參考:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze




注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 Object.freeze() in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。