Home  >  Article  >  Web Front-end  >  js Prototype attribute explanation and common methods_Basic knowledge

js Prototype attribute explanation and common methods_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 16:49:01942browse

Function: Prototype

Each constructor has an attribute called prototype (prototype, which will not be translated below, use its original text). This attribute is very useful for declaring common variables or functions for a specific class.

Definition of prototype

You don’t need to explicitly declare a prototype attribute because it exists in every constructor. You can take a look at the following example:

Example PT1

Copy code The code is as follows:

function Test()
{
}
alert(Test.prototype); // Output "Object"

Add attributes to prototype

As you can see above, prototype is an object, therefore, you can add properties to it. Properties you add to the prototype will become common properties to objects created using this constructor.

For example, I have a data type Fish below, and I want all fish to have these attributes: livesIn="water" and price=20; in order to achieve this, I can add those attributes to the prototype of the constructor Fish.

Example PT2

Copy code The code is as follows:

function Fish(name, color)
{
this.name=name;
this.color=color;
}
Fish.prototype.livesIn="water";
Fish.prototype.price=20;

Let’s make some fish next:

Copy code The code is as follows:

var fish1=new Fish("mackarel", "gray ");
var fish2=new Fish("goldfish", "orange");
var fish3=new Fish("salmon", "white");

Let’s take a look at the attributes of fish:

Copy code The code is as follows:

for (int i=1; i<=3; i )
{
var fish=eval_r("fish" i); // I just get the pointer to this fish
alert(fish.name "," fish.color "," fish. livesIn "," fish.price);
}

The output should be:

Copy code The code is as follows:

"mackarel, gray, water, 20"
"goldfish, orange, water, 20"
"salmon, white water, 20"

You see that all fish have properties livesIn and price, we don’t even declare these properties specifically for each different fish. This is because when an object is created, this constructor will assign its attribute prototype to the internal attribute __proto__ of the new object. This __proto__ is used by this object to find its properties.

You can also add common functions to all objects through prototype. This has the advantage that you don't need to create and initialize this function every time you construct an object. To explain this, let's revisit Example DT9 and rewrite it using prototype:

Use prototype to add functions to objects

Example PT3

Copy code The code is as follows:

function Employee(name, salary)
{
this.name=name;

Employee.prototype.addSalary=function addSalaryFunction(addition)
{
this.salary=this.salary addition;
}


We can create objects as usual:


Copy code

The code is as follows:var boss1=new Employee("Joan", 200000) ;var boss2=new Employee("Kim", 100000);var boss3=new Employee("Sam", 150000);

and verify it:


Copy code

The code is as follows:alert(boss1.getSalary()); // Output 200000alert(boss2.getSalary()); // Output 100000alert(boss3.getSalary()); // Output 150000

Here is a diagram to illustrate how the prototype works. Each instance of this object (boss1, boss2, boss3) has an internal property called __proto__, which points to the prototype property of its constructor (Employee). When you execute getSalary or addSalary, this object will find and execute this code in its __proto__. Note this: there is no duplication of code here (compare with the diagram in Example DT8).

js Prototype attribute explanation and common methods_Basic knowledge

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn