JS对象分类以及构造函数

2022-07-17  本文已影响0人  饥人谷_折纸大师

我们先引入一个概念,JavaScript中用new关键字来调用的函数是构造函数,它可以构造对象。

new操作符

new X ()自动做了四件事

一些规范
        let widthList = [5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6]
        let squareList = []
        function Square(width) {
            this.width = width
        }
        Square.prototype.getArea = function (width) {
            return this.width * this.width
        }
        Square.prototype.getLength = function (width) {
            return this.width * 4
        }
        for (i = 0; i < 12; i++) {
            squareList[i] = new Square(widthList[i])
            console.log(squareList[i].constructor)
        }

如果条件变化一下,将正方形改成长方形,我们给定一个宽和高要求它的周长的面积,我们该怎么办呢。长方形不同于正方形的是它有两个参数,分别是 宽和高,只要在声明函数时,写两个参数即可。

        function Rect(width, height) {
            this.width = width
            this.height = height
        }
        Rect.prototype.getArea = function (width, height) {
            return this.width * this.height
        }
        Rect.prototype.getLength = function (width, height) {
            return this.width * this.height
        }
        let rect = new Rect(4, 5)

原型公式
对象.__proto__=其构造函数.prototype

类型和类

类型

JS中类型值得是七种数据类型:Number、String、Boolean、undefined、object、Null以及 Symbol。

类是针对于对象的分类,常见的有数组、函数、日期、正则等无数种。
这里介绍数组对象和函数对象。
数组对象

重要的问题:

Class语法

我们直接通过上文写过的长方形原型写法与class对比一下。
class写法:

class Rect{
  constructor(width, height){ 
    this.width = width
    this.height = height
  }
  getArea(){ 
    return this.width * this.height  
  }
  getLength(){
    return (this.width + this.height) * 2
  }
}
let react = new Rect(4,5)

原型写法:

        function Rect(width, height) {
            this.width = width
            this.height = height
        }
        Rect.prototype.getArea = function (width, height) {
            return this.width * this.height
        }
        Rect.prototype.getLength = function (width, height) {
            return this.width * this.height
        }
        let rect = new Rect(4, 5)

有图可知,对象本身的属性在class的语法中被写到了constructor(){ }中,共有属性直接写在外面。class写法可能从理解层面比原型写法更容易一些,但是他们都是来给对象分类的,所以我们都有必要学习。

上一篇下一篇

猜你喜欢

热点阅读