Javascript:原型对象(prototype)中的constructor属性、及其应用

介绍

在每个原型对象里面都有个constructor属性,该属性指向该原型对象的构造函数。

constructor的使用场景
如果构造函数有多个公共方法,可以把这些方法写到一个对象中,然后给原型对象赋值。但是这样一来,就会覆盖构造函数原型对象原来的内容,导致修改后的原型对象的constructor属性就不再指向当前构造函数了。此时,就可以在修改后的原型对象中,添加一个constructor属性,用来指向原来的构造函数。

示例

查看prototype中的constructor属性

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>

<body>
  <script>
    function Star() {
    }
    const star1 = new Star()
    console.log(Star.prototype)
  </script>
</body>

</html>

在这里插入图片描述

constructor属性指向原型的构造函数

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>

<body>
  <script>
    function Star() {
    }
    const star1 = new Star()
    // console.log(Star.prototype)
    console.log(Star.prototype.constructor === Star)
  </script>
</body>

</html>

在这里插入图片描述

constructor的典型使用场景

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>

<body>
  <script>
    function Star() {
    }

    Star.prototype = {
      // 重新指回创造这个原型对象的构造函数
      constructor: Star,
      sing: function () {
        console.log('唱歌')
      },
      dance: function () {
        console.log('跳舞')
      },
    }
    console.log(Star.prototype)

  </script>
</body>

</html>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值