Each function we create has a prototype property, which is an object that contains properties and methods that can be shared by all instances of a specific type. The advantage of using it is that all object instances can share the properties and methods it contains. That is to say, there is no need to define the information of the object in the constructor, but you can add this information directly to the prototype object, as shown below, or then rewrite the examples in the previous two logs:
function Employee() {
};
= "Jim";
= 28;
= "SoftWare Engineer";
= function () {
alert();
};
var employee1 = new Employee();
();//Jim
var emplayee2 = new Employee();
(); //Jim
alert( = );//true
Unlike the constructor pattern, these properties and methods of the new object are shared by all instances.
The above is an introduction to the prototype mode. To understand the working principle of the prototype mode, you need to understand the properties of the prototype in ECMASCRIPT.
Understand the prototype
In Javascript, as long as a new function is created, a prototype property is created for the function based on a specific set of rules. By default, even if there is a prototype property, a constructor property will be automatically obtained. This property contains a pointer to the function where the prototype property is located. Through this constructor, we can continue to add other properties and methods to the prototype.
After creating a custom constructor, its prototype attribute will only obtain the constructor attribute by default, and other methods are inherited from Object. When a new instance is called to create a new instance, the instance's internal instance will contain a pointer (internal property) pointing to the prototype attribute of the constructor. It should be noted that this connection exists between the instance and the constructor prototype attribute, not between the instance and the constructor.
In some implementations, internal properties (_proto_property) cannot be accessed, but in all implementations, it isPrototypeOf method to determine whether such a prototype relationship exists between objects. Essentially, if the object's _proto_ attribute points to isPrototypeOf, this method returns true. As shown below:
alert((employee1)); //true
alert((employee2));//true
Whenever the code reads a certain property of an object, a search is performed, with the goal being an attribute with a given name. Search starts with the object instance itself. If a property with the given name is found in the instance, then the value of the property, and if not found, continue to search for the prototype object pointed to by the pointer, looking for the property with the given name in the prototype object. If this property is found in the prototype object, the value of the property is returned. This is also the basic principle of the properties and methods saved by the sharing prototype for each object instance.
As mentioned earlier, the prototype initially only contains the constructor attribute, which is also shared, so it can be accessed through the object instance.
Although the value saved in the prototype can be accessed through the object instance, the value in the prototype cannot be rewrited through the object instance. If we add a property to the instance and the property is the same as a property in the instance prototype, the property created by name in the instance will block (.net becomes hidden) the property in the prototype, as shown below:
function Employee() {
};
= "Jim";
= 28;
= "SoftWare Engineer";
= function () {
alert();
};
= "Sun";
alert(); //Jim
alert();//Sun
Among them, Jim comes from the prototype, and the sun comes from the example.
Copy the codeThe code is as follows:
function Employee() {
};
= "Jim";
= 28;
= "SoftWare Engineer";
= function () {
alert();
};
var employee1 = new Employee();
();//Jim
var emplayee2 = new Employee();
(); //Jim
alert( = );//true
Unlike the constructor pattern, these properties and methods of the new object are shared by all instances.
The above is an introduction to the prototype mode. To understand the working principle of the prototype mode, you need to understand the properties of the prototype in ECMASCRIPT.
Understand the prototype
In Javascript, as long as a new function is created, a prototype property is created for the function based on a specific set of rules. By default, even if there is a prototype property, a constructor property will be automatically obtained. This property contains a pointer to the function where the prototype property is located. Through this constructor, we can continue to add other properties and methods to the prototype.
After creating a custom constructor, its prototype attribute will only obtain the constructor attribute by default, and other methods are inherited from Object. When a new instance is called to create a new instance, the instance's internal instance will contain a pointer (internal property) pointing to the prototype attribute of the constructor. It should be noted that this connection exists between the instance and the constructor prototype attribute, not between the instance and the constructor.
In some implementations, internal properties (_proto_property) cannot be accessed, but in all implementations, it isPrototypeOf method to determine whether such a prototype relationship exists between objects. Essentially, if the object's _proto_ attribute points to isPrototypeOf, this method returns true. As shown below:
Copy the codeThe code is as follows:
alert((employee1)); //true
alert((employee2));//true
Whenever the code reads a certain property of an object, a search is performed, with the goal being an attribute with a given name. Search starts with the object instance itself. If a property with the given name is found in the instance, then the value of the property, and if not found, continue to search for the prototype object pointed to by the pointer, looking for the property with the given name in the prototype object. If this property is found in the prototype object, the value of the property is returned. This is also the basic principle of the properties and methods saved by the sharing prototype for each object instance.
As mentioned earlier, the prototype initially only contains the constructor attribute, which is also shared, so it can be accessed through the object instance.
Although the value saved in the prototype can be accessed through the object instance, the value in the prototype cannot be rewrited through the object instance. If we add a property to the instance and the property is the same as a property in the instance prototype, the property created by name in the instance will block (.net becomes hidden) the property in the prototype, as shown below:
Copy the codeThe code is as follows:
function Employee() {
};
= "Jim";
= 28;
= "SoftWare Engineer";
= function () {
alert();
};
= "Sun";
alert(); //Jim
alert();//Sun
Among them, Jim comes from the prototype, and the sun comes from the example.