当前位置:网站首页>Prototype and prototype chain
Prototype and prototype chain
2022-07-07 10:27:00 【Wang yuanrou】
List of articles
- Constructors
- Three ways to create objects
- new The role of keywords
- Static members and instance members
- Why use prototypes
- The prototype object for the constructor prototype
- The prototype object on the object __proto__
- javascript Order rules for accessing the properties and methods of objects
- On the prototype object constructor attribute
- Constructors 、 Prototype object 、 Diagram of the relationship between instance objects
- Prototype chain diagram
- Prototype this Direction problem of
- The application of prototype chain -- Inherit
Constructors
What is a constructor
A constructor is a special function , It's mainly used to initialize objects , That is, the initialization value of the object member object , It's always related to new Use it with . Put some common attributes and methods of the object in this constructor .
Constructor considerations
Constructor should :
- The first letter should be capitalized
- and new Use it with
Three ways to create objects
- Object literal
const obj = {
}
- new Object
const obj = new Object();
- Custom constructors
const Star = function(uname,age){
this.uname = uname;
this.age = age;
this.sing = function(){
console.log(' Sing a song ');
}
}
const ldh = new Star(' Lau Andy ',18);
new The role of keywords
When instantiating an object , The following steps will be performed in sequence :
- Create a new empty object in memory
- Give Way this Point to this new object
- Execute the code in the constructor , Add properties and methods to the new object
- Return this object
Static members and instance members
Static members : What you add to the constructor itself is a static member , It can only be accessed through the constructor itself
Instance members : In the constructor , Use this Add instance members , It can only be accessed through the instance object
function Star(uname,age){
//uname,age,sing Are all instance members
this.uname = uname;
this.age = age;
this.sing = function(){
console.log(' Sing a song ');
}
}
var ldh = new Star(' Lau Andy ',18);
// xb Is a static member
Star.xb = 'na';
console.log(Star.xb);//na
console.log(ldh.xb);//undefined
console.log(ldh.uname);// Lau Andy
console.log(Star.uname);//undefined
Why use prototypes
The constructor has the problem of wasting memory : The methods in the constructor are implemented by functions , When the function is declared and used again, it will open up a memory space , therefore , Every time we instantiate an object with a constructor , Objects will open up a memory space for method functions and point to it , But in fact, the things stored in these memory spaces are the same , This leads to a waste of memory space .
const Star = function(uname,age){
this.uname = uname;
this.age = age;
this.sing = function(){
console.log(' Sing a song ');
}
}
const ldh = new Star(' Lau Andy ',18);
const zxy = new Star(' Jacky Cheung ',18);
console.log(ldh.sing === zxy.sing);//false
//ldh and zxy The methods of two instance objects are not equal false
The prototype object for the constructor prototype
JavaScript Regulations , There is one in every constructor prototype attribute , Its attribute value is an object , And the properties and methods in this object will be owned by the constructor , This object is the prototype object . Usually, we define common attributes directly on the constructor , Define the method in the constructor prototype Property corresponding to the prototype object , Can save memory space , If the method is placed in the constructor , Every time you instantiate an object, you need to open up a space to store methods , These methods are the same , Waste space . therefore , We know that the role of the prototype object in the constructor is to share methods
const Star = function(uname,age){
this.uname = uname;
this.age = age;
}
Star.prototype.sing = function(){
console.log(' Sing a song ');
}
const ldh = new Star(' Lau Andy ',18);
ldh.sing(); // Sing a song
const zxy = new Star(' Jacky Cheung ',19);
zxy.sing(); // Sing a song
console.log(ldh.sing === zxy.sing); // true
The prototype object on the object __proto__
Every object has an attribute __proto__, Its attribute value is the constructor prototype Property value of property ( It's also an object ), The reason why instantiated objects can use constructors prototype Properties and methods of , Because of __prpto__ The existence of ,__proto__ Object prototypes and prototype objects prototype It is equivalent. .
__proto__ The significance of the system is to find the object , It is a non-standard attribute , Therefore, we cannot use this attribute in actual development .
const Star = function(uname,age){
this.uname = uname;
this.age = age;
}
Star.prototype.sing = function(){
console.log(' Sing a song ');
}
const ldh = new Star(' Lau Andy ',18);
console.log(ldh.__proto__ === Star.prototype);//true
javascript Order rules for accessing the properties and methods of objects
First, check whether the object itself has
Find its prototype __proto__ Do you have , Similarly, it is also constructor prototype Prototype object
Find No 2 Is there any on the prototype object found in step , Always find Object On the prototype object __proto__
If the former 3 I can't find any steps , That's it null
The whole process depends on __proto__ This attribute , Provides the search “ Route ”, We call it “ Prototype chain ”.
const Star = function(){
};
Object.prototype.sing = function(){
console.log("Obj Sing a song ");
};
const ldh = new Star();
ldh.sing(); // Obj Sing a song
const Star = function(){
};
Object.prototype.sing = function(){
console.log("Obj Sing a song ");
};
Star.prototype.sing = function(){
console.log(" Sing a song ");
};
const ldh = new Star();
ldh.sing(); // Sing a song
const Star = function(){
this.sing = function(){
console.log("ldh Sing a song ");
}
};
Object.prototype.sing = function(){
console.log("Obj Sing a song ");
};
Star.prototype.sing = function(){
console.log(" Sing a song ");
};
const ldh = new Star();
ldh.sing(); // ldh Sing a song
On the prototype object constructor attribute
const Star = function(uname,age){
this.uname = uname;
this.age = age;
}
Star.prototype.sing = function(){
console.log(' Sing a song ');
}
// This form is to reassign the prototype object ,Star.prorotype.constructor It's not Star Constructor
Star.prototype = {
constructor: Star,
eat: function(){
console.log(' having dinner ');
},
sleep: function(){
consolo.log(' sleep ');
}
}
//constructor The value of this attribute is used to record which constructor the prototype object refers to , It allows the prototype object to point back to the original constructor
const ldh = new Star(' Lau Andy ',18);
ldh.eat();// having dinner
ldh.sing();//Uncaught TypeError: ldh.sing is not a function
//ldh The prototype object of has been modified
Constructors 、 Prototype object 、 Diagram of the relationship between instance objects
Prototype chain diagram
Prototype this Direction problem of
In the constructor this It points to the instance object
Prototype object function this It also points to the instance object
var that1;
var that2;
function Star(uname,age){
this.uname = uname;
this.age = age;
that1 = this;
}
Star.prototype.sing = function(){
console.log(' Sing a song ');
that2 = this;
}
console.log(that1 == that2);//true
The application of prototype chain – Inherit
// Inheritance attribute :
// Just use call() Parent class this Point to subclasses this Point to
// Specific operation demonstration :
function Father(uname,age){
this.uname = uname;
this.age = age;
}
Father.prototype.money = function(){
console.log(' I can make money now ');
}
function Son(uname,age,score){
// By calling call This method can inherit all the attributes in the constructor of the parent class , Concise code
Father.call(this,uname,age);
this.score = score;
}
var son = new Son(' Lau Andy ',18,100);
console.log(son);
// {
// "uname": " Lau Andy ",
// "age": 18,
// "score": 100
// }
// Inheritance method :
/* Modify the prototype object of the subclass prototype by new Father() The instance , Through the prototype chain __proto__ It inherits the prototype object of the parent class and its methods ; But don't forget to use Son.prototype.constructor = Son; Point back to the original constructor , This is the of this instance object “ Id card ”, Explain which constructor is instantiated */
function Father(uname,age){
this.uname = uname;
this.age = age;
}
Father.prototype.money = function(){
console.log(' I can make money now ');
}
function Son(uname,age,score){
// By calling call This method can inherit all the attributes in the constructor of the parent class , Concise code
Father.call(this,uname,age);
this.score = score;
}
Son.prototype = new Father();
Son.prototype.constructor = Son;
Son.prototype.kaoshi = function(){
console.log(' The test ');
}
var son = new Son(' Lau Andy ',18,100);
console.log(son);
// {
// "uname": " Lau Andy ",
// "age": 18,
// "score": 100
// }
son.money(); // I can make money now
son.kaoshi(); // The test
边栏推荐
- 【二开】【JeecgBoot】修改分页参数
- EasyExcel读取写入简单使用
- [牛客网刷题 Day6] JZ27 二叉树的镜像
- Encrypt and decrypt stored procedures (SQL 2008/sql 2012)
- Multisim--软件相关使用技巧
- Learning records - high precision addition and multiplication
- IIC基本知识
- AHB bus in stm32_ Apb2 bus_ Apb1 bus what are these
- MCU is the most popular science (ten thousand words summary, worth collecting)
- leetcode-303:区域和检索 - 数组不可变
猜你喜欢
[牛客网刷题 Day5] JZ77 按之字形顺序打印二叉树
字符串格式化
Leetcode exercise - 113 Path sum II
ORM -- database addition, deletion, modification and query operation logic
Fiddler break point
求方程ax^2+bx+c=0的根(C语言)
每周推荐短视频:L2级有哪些我们日常中经常会用到的功能?
SolidWorks工程图中添加中心线和中心符号线的办法
The request object parses the request body and request header parameters
The method of word automatically generating directory
随机推荐
【HigherHRNet】 HigherHRNet 详解之 HigherHRNet的热图回归代码
【华为机试真题详解】高矮个子排队
【剑指Offer】42. 栈的压入、弹出序列
fiddler-AutoResponder
ORM -- logical relation and & or; Sort operation, update record operation, delete record operation
SQLyog数据库怎么取消自动保存更改
Guid主键
2022.7.4DAY596
STM32中AHB总线_APB2总线_APB1总线这些是什么
Study summary of postgraduate entrance examination in September
ArcGIS operation: batch modify attribute table
CONDA creates virtual environment offline
HAL库配置通用定时器TIM触发ADC采样,然后DMA搬运到内存空间。
基于HPC场景的集群任务调度系统LSF/SGE/Slurm/PBS
Can I open a stock trading account online? Is it safe
Socket通信原理和实践
The Hal library is configured with a general timer Tim to trigger ADC sampling, and then DMA is moved to the memory space.
Study summary of postgraduate entrance examination in November
MCU与MPU的区别
【STM32】STM32烧录程序后SWD无法识别器件的问题解决方法