ES6 Class类的部分理解

ES6 Class类

JavaScript生成实例对象的传统方法是通过构造函数。实例

function Add(x, y) {
  this.x = x;
  this.y = y;
}
Add.prototype.toString = function () {
  return this.x+this.y;
};
var p = new Add(1, 2);

ES6提供了新的写法,引入了类的概念。上面的代码用ES6的class改写。

class Add{
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }
  toString() {
     return this.x+this.y;
  }
}

类Class与ES5不同的地方:
类的内部定义的方法都是不可枚举的,实例。

class Add{
  constructor(x, y) {
    // ...
  }

  toString() {
    // ...
  }
}

Object.keys(Add.prototype)
// []

function Add(x, y) {
  this.x = x;
  this.y = y;
}
Add.prototype.toString = function () {
  return this.x+this.y;
};
Object.keys(Add.prototype)
//["toString"]

Class类中一定有个constructor方法,即使没有定义,也会隐性的添加constructor方法。

class Add{
}

// 等同于
class Add {
  constructor() {}
}

类的实例
通过new命令,生成类的实例。

与 ES5 一样,实例的属性除非显式定义在其本身(即定义在this对象上),否则都是定义在原型上(即定义在class上)。
function Add(x, y) {
  this.x = x;
  this.y = y;
}
Add.prototype.toString = function () {
  return this.x+this.y;
};
var add = new Add(1, 2);
add.toString() //3

add .hasOwnProperty('x') // true
add .hasOwnProperty('y') // true
add .hasOwnProperty('toString') // false
add .__proto__.hasOwnProperty('toString') // true

x和y都是实例对象add自身的属性,所以hasOwnProperty方法返回true
toString是原型对象的属性(因为定义在Add类上),所以hasOwnProperty方法返回false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值