ES6 —— 构造函数和原型

简介: ES6 —— 构造函数和原型

1、利用构造函数创建对象

构造函数是一种特殊的函数,主要用来初始化对象,即为对象成员变量附初始值,它总与 new 一起使用。我们可以把对象中一些公共属性和方法抽取出来,然后封装到这个函数里面。

new 在执行时会做的四件事情:

在内存中创建一个新的空对象。

让 this 指向这个新的对象。

执行构造函数里面的代码,给这个新对象添加属性和方法。

返回这个新对象(所以构造函数里面不需要 return)

  // 利用构造函数创建对象
    function Star(uname, age){
        this.uname = uname
        this.age = age
        this.sing = function() {
            console.log('I can sing')
        }
    }
    let a = new Star('毛不易', 20)
    console.log(a) //Star {uname: '毛不易', age: 20, sing: ƒ}
    a.sing() //I can sing

2、实例成员和静态成员

  1. 实例成员:构造函数内部通过 this 添加的成员。只能通过实例化的对象来访问。
  2. 静态成员:在构造函数本身上添加的成员。只能通过构造函数来访问。
  // 构造函数中的属性和方法我们称为成员 成员可以添加
    function Star(uname, age){
        this.uname = uname
        this.age = age
        this.sing = function() {
            console.log('I can sing');
        }
    }
    let a = new Star('毛不易', 20)
    // 1. 实例成员就是构造函数内部通过this添加的成员 uname age sing 就是实例成员
    // 实例成员只能通过实例化的对象来访问
    console.log(a.uname) //毛不易
    a.sing() //I can sing
    // console.log(Star.uname) //undefined  不可以通过构造函数来访问实例成员
    // 2.静态成员 在构造函数本身上添加的成员 sex 就是静态成员
    Star.sex = '男'
    // 静态成员只能通过构造函数来访问
    console.log(Star.sex) //男
    // console.log(a.sex) //undefined 不能通过对象来访问

3、构造函数原型对象 prototype

  1. 构造函数的问题:存在浪费内存的问题。
  function Star(uname, age){
        this.uname = uname
        this.age = age
        this.sing = function() {
            console.log('I can sing');
        }
    }
    let a = new Star('毛不易', 20)
    let b = new Star('水木年华', 25)
    console.log(a.sing === b.sing) //false 因为会创建两个函数

构造函数原型 prototype:构造函数通过原型分配的函数是所有对象所 共享的。

JavaScript 规定,每一个构造函数都有一个 prototype 属性,指向另一个对象。注意这个 prototype 就是一个对象,这个对象的所有属性和方法,都会被构造函数所拥有。

我们可以把那些不变的方法,直接定义在 prototype 对象上,这样所有的实例就可以共享这些方法。

原型是什么?一个对象,我们也成为 prototype 为 原型对象。

原型的作用:共享方法。

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    let a = new Star('毛不易', 20)
    let b = new Star('水木年华', 25)
    console.log(a.sing === b.sing)
    a.sing() //I can sing
    b.sing() //I can sing

4、对象原型 __proto__

对象都会有一个属性 __proto__ 指向构造函数的 prototype 原型对象,之所以我们对象可以使用构造函数 prototype 原型对象的属性和方法,就是因为对象有 __proto__ 原型的存在。

__proto__ 对象原型和原型对象 prototype 是等价的

__proto__ 对象原型的意义在于为对象的查找机制提供一个方向,或者说一条线路,但是它是一个非标准属性,因此在实际开发中,不可以使用和这个属性,它只是内部指向原型对象 prototype。

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing');
    }
    let a = new Star('毛不易', 20)
    let b = new Star('水木年华', 25)
    a.sing() //I can sing
    console.log(a) //Star {uname: '毛不易', age: 20} 对象身上系统自己添加一个 __proto__ 指向我们构造函数的原型对象
    console.log(a.__proto__ === Star.prototype) //true
    // 方法查找规则:
    // 如果a 对象上有sing 方法 就执行这个对象上的 sing
    // 如果没有sing 这个方法 因为有__proto__的存在 就去构造函数原型对象 prototype 身上去查找sing 这个方法

5、constructor 构造函数

对象原型(__proto__)和构造函数(prototype)原型对象里面都有一个constructor 属性,constructor 我们称为构造函数,因为它指回构造函数本身。

constructor 主要用于记录该对象引用于哪个构造函数,它可以让原型对象重新指向原来的构造函数。

如果我们修改了原来的原型对象,给原型对象赋值的是一个对象,则需要手动的利用 constructor 这个属性指回原来的构造函数。

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    // 如果我们修改了原来的原型对象 给原型对象赋值的是一个对象 则需要手动的利用 constructor 这个属性指回 原来的构造函数
    Star.prototype = {
        constructor: Star,
        sing(){
            console.log('I can sing')
        },
        movie(){
            console.log('I can perform in a film')
        }
    }
    let a = new Star('毛不易', 20)
    let b = new Star('水木年华', 25)
    console.log(Star.prototype)
    console.log(a.__proto__)
    console.log(Star.prototype === a.__proto__)
    console.log(Star.prototype.constructor)
    console.log(a.__proto__.constructor)

c35bf9d554604431b192b3600cc7c45e.png

如果不在 Star 原型对象上添加:constructor: Star,就不会有构造函数。

995474622458489797bd15cf4f8b5747.png

构造函数、实例、原型对象三者之间的关系

9bc4d0132e104f0fab421f16d73485bc.png

6、原型链

  1. 只要有对象就有 __proto__ 原型。
  2. b62e4b7eb9fd466cb7cc080e232f1fdb.png
  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    let a = new Star('毛不易', 20)
    console.log(a.__proto__ === Star.prototype) //true
    // 1.只要有对象就有 __proto__ 原型 指向原型对象
    console.log(a.__proto__) //指向Star.prototype
    // 2.我们Star原型对象里面的__proto__原型指向的是 Object.prototype
    console.log(Star.prototype.__proto__) //指向Object.prototype
    // 3.我们Object.prototype 原型对象里面的__proto__原型 指向为 null
    console.log(Object.prototype.__proto__) //指向 null

88c469cd6c6041b39d9245ae68138742.png

7、JavaScript 成员的查找机制(规则)

  1. 一层一层的查找,如果多层都含有某个属性,会就近选择。

第一层

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    // Star.prototype.sex = '女'
    // Object.prototype.sex = '不详'
    let a = new Star('张三', 20)
    a.sex = '男'
    console.log(a.sex) //男

第二层

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    Star.prototype.sex = '女'
    // Object.prototype.sex = '不详'
    let a = new Star('张三', 20)
    // a.sex = '男'
    console.log(a.sex) //女

第三层

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    // Star.prototype.sex = '女'
    Object.prototype.sex = '不详'
    let a = new Star('张三', 20)
    // a.sex = '男'
    console.log(a.sex) //不详

多层用最近的一层

  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    Star.prototype.sing = function(){
        console.log('I can sing')
    }
    Star.prototype.sex = '女'
    Object.prototype.sex = '不详'
    let a = new Star('张三', 20)
    a.sex = '男'
    console.log(a.sex) //男

8、原型对象中的 this 指向

  1. 构造函数里面 this 指向的是对象实例。
  2. 原型对象函数里面的 this 指向的是实例对象。
  function Star(uname, age){
        this.uname = uname
        this.age = age
    }
    let that
    Star.prototype.sing = function(){
        console.log('I can sing')
        that = this
    }
    let a = new Star('张三', 20)
    // 1.构造函数里面 this 指向的是对象实例a
    a.sing() //I can sing
    // 2.原型对象函数里面的this 指向的是实例对象a
    console.log(that === a) //true

9、扩展内置对象

  1. 可以通过原型对象,对原来的内置对象进行扩展自定义的方法。
  // 原型对象的应用 扩展内置对象方法
    console.log(Array.prototype)
    Array.prototype.sum = function() {
        let sum = 0
        for(let i = 0; i < this.length; i++){
            sum += this[i]
        }
        return sum
    }
    let arr = [1, 2, 3]
    console.log(arr.sum())
    console.log(Array.prototype)
    let arr1 = new Array(2, 3, 4)
    console.log(arr1.sum())

cff0ca7c83f846468681e10265fde81e.png

  1. 数组和字符串内置对象不能给原型对象覆盖操作 Array.prototype = {},只能是 Array.prototype.xxx = function() {} 的方式。
  Array.prototype = {
        sum(){
            let sum = 0
            for(let i = 0; i < this.length; i++){
                sum += this[i]
            }
            return sum
        }
    }
    let arr = [1, 2, 3]
    console.log(arr.sum())
    console.log(Array.prototype)
    let arr1 = new Array(2, 3, 4)
    console.log(arr1.sum())

d60fb923124144b5932e1dbb6fd29c22.png

相关文章
|
前端开发
前端原型和原型链构造函数的使用
前端原型和原型链构造函数的使用
82 0
|
前端开发
前端原型和原型链构造函数的使用
前端原型和原型链构造函数的使用
68 0
【构造函数】解析构造函数的作用
构造函数 ,是一种特殊的方法。主要用来在创建对象时初始化对象, 即为对象成员变量赋初始值,总与new运算符一起使用在创建对象的语句中。特别的一个类可以有多个构造函数 ,可根据其参数个数的不同或参数类型的不同来区分它们 即构造函数的重载。
115 0
|
JavaScript
ts(typescript) 字类 继承父类 在字类构造函数为啥需要先super()调用 分析
ts(typescript) 字类 继承父类 在字类构造函数为啥需要先super()调用 分析
ts(typescript) 字类 继承父类 在字类构造函数为啥需要先super()调用 分析
lodash创建对象的直接和继承属性名为数组
lodash创建对象的直接和继承属性名为数组
76 0
|
JavaScript 前端开发
你必须要学会的js构造函数、原型、原型链
你必须要学会的js构造函数、原型、原型链
你必须要学会的js构造函数、原型、原型链
|
JavaScript 前端开发
es6为类创建多个构造函数
版权声明:本文首发 http://asing1elife.com ,转载请注明出处。 https://blog.csdn.net/asing1elife/article/details/82820605 ...
2422 0
|
JavaScript
JS面向对象编程,原型与继承全面解析
JS面向对象编程,原型与继承
|
JavaScript 前端开发
new-构造函数-原型-类
虽然现在已经是21年7月,但是es6还是没有那么的普及,所有简单梳理下 一些常用的知识点
118 0
ES6—05:利用构造函数创建对象
ES6—05:利用构造函数创建对象
141 0
ES6—05:利用构造函数创建对象