简介

JavaScript 语言中,生成实例对象的传统方法是通过构造函数。下面是一个例子。

  1. function Point(x, y) {
  2. this.x = x;
  3. this.y = y;
  4. }
  5. Point.prototype.toString = function () {
  6. return '(' + this.x + ', ' + this.y + ')';
  7. };
  8. var p = new Point(1, 2);

上面这种写法跟传统的面向对象语言(比如 C++ 和 Java)差异很大,很容易让新学习这门语言的程序员感到困惑。

ES6 提供了更接近传统语言的写法,引入了 Class(类)这个概念,作为对象的模板。通过class关键字,可以定义类。

ES6 的class可以看作只是一个语法糖

基本上,ES6 的class可以看作只是一个语法糖,它的绝大部分功能,ES5 都可以做到,新的class写法只是让对象原型的写法更加清晰、更像面向对象编程的语法而已。上面的代码用 ES6 的class改写,就是下面这样。

  1. //定义类
  2. class Point {
  3. constructor(x, y) {
  4. this.x = x;
  5. this.y = y;
  6. }
  7. toString() {
  8. return '(' + this.x + ', ' + this.y + ')';
  9. }
  10. }

上面代码定义了一个“类”,可以看到里面有一个constructor方法,这就是构造方法,而**this**关键字则代表实例对象。也就是说,ES5 的构造函数Point,对应 ES6 的Point类的构造方法。

Point类除了构造方法,还定义了一个toString方法。注意,定义“类”的方法的时候,前面不需要加上function这个关键字,直接把函数定义放进去了就可以了。另外,方法之间不需要逗号分隔,加了会报错

ES6 的类,完全可以看作构造函数的另一种写法。

  1. class Point {
  2. // ...
  3. }
  4. typeof Point // "function"
  5. Point === Point.prototype.constructor // true

上面代码表明,类的数据类型就是函数,类本身就指向构造函数。

使用的时候,也是直接对类使用new命令,跟构造函数的用法完全一致。

  1. class Bar {
  2. doStuff() {
  3. console.log('stuff');
  4. }
  5. }
  6. var b = new Bar();
  7. b.doStuff() // "stuff"

类的所有方法都定义在类的prototype属性上面

构造函数的prototype属性,在 ES6 的“类”上面继续存在。事实上,类的所有方法都定义在类的**prototype**属性上面。

  1. class Point {
  2. constructor() {
  3. // ...
  4. }
  5. toString() {
  6. // ...
  7. }
  8. toValue() {
  9. // ...
  10. }
  11. }
  12. // 等同于
  13. Point.prototype = {
  14. constructor() {},
  15. toString() {},
  16. toValue() {},
  17. };

在类的实例上面调用方法,其实就是调用原型上的方法。

  1. class B {}
  2. let b = new B();
  3. b.constructor === B.prototype.constructor // true

上面代码中,bB类的实例,实例bconstructor方法就是B类原型的constructor方法。

Object.assign方法一次向类添加多个方法

由于类的方法都定义在prototype对象上面,所以类的新方法可以添加在prototype对象上面。**Object.assign**方法可以很方便地一次向类添加多个方法。

  1. class Point {
  2. constructor(){
  3. // ...
  4. }
  5. }
  6. Object.assign(Point.prototype, {
  7. toString(){},
  8. toValue(){}
  9. });

constructor 属性,直接指向“类”的本身

**prototype**对象的**constructor**属性,直接指向“类”的本身,这与 ES5 的行为是一致的。

  1. Point.prototype.constructor === Point // true

内部所有定义的方法,都是不可枚举的

另外,类的内部所有定义的方法,都是不可枚举的(non-enumerable)。

  1. class Point {
  2. constructor(x, y) {
  3. // ...
  4. }
  5. toString() {
  6. // ...
  7. }
  8. }
  9. Object.keys(Point.prototype)
  10. // []
  11. Object.getOwnPropertyNames(Point.prototype)
  12. // ["constructor","toString"]

上面代码中,toString方法是Point类内部定义的方法,它是不可枚举的。这一点与 ES5 的行为不一致。

类的属性名,可以采用表达式。

  1. let methodName = 'getArea';
  2. class Square {
  3. constructor(length) {
  4. // ...
  5. }
  6. [methodName]() {
  7. // ...
  8. }
  9. }

上面代码中,Square类的方法名getArea,是从表达式得到的。

严格模式

类和模块的内部,默认就是严格模式,所以不需要使用use strict指定运行模式。只要你的代码写在类或模块之中,就只有严格模式可用。

考虑到未来所有的代码,其实都是运行在模块之中,所以 ES6 实际上把整个语言升级到了严格模式。

定义 class 类

类声明和类表达式

在ES6标准中,JavaSCript 也支持了 class 这种创建对象的语法。

与函数类型相似,定义类也有两种主要方式:类声明和类表达式。这两种方式都使用 class 关键字加大括号:

  1. // 类声明
  2. class Person {}
  3. // 类表达式
  4. const Animal = class {};
  1. class Animal {
  2. constructor(name) { // 构造方法
  3. this.name = name
  4. }
  5. sleep() {
  6. return 'zzZZ~'
  7. }
  8. }
  9. let cat = new Animal('cat')
  10. let dog = new Animal('dog')
  11. console.log(cat.name) // cat
  12. console.log(dog.name) // dog
  13. console.log(cat.sleep === dog.sleep) // true

constructor 类构造函数

constructor 关键字用于在类定义块内部创建类的构造函数。 方法名 constructor 会告诉解释器在使用 new 操作符创建类的新实例时,应该调用这个函数。构造函数的定义不是必需的,不定义构造函数相当于将构造函数定义为空函数。

一个类必定有constructor方法,如果没有显式定义,一个空的constructor方法会被默认添加。

  1. class Point {
  2. }
  3. // 等同于
  4. class Point {
  5. constructor() {}
  6. }

上面代码中,定义了一个空的类Point,JavaScript 引擎会自动为它添加一个空的constructor方法。

constructor方法默认返回实例对象(即**this**,完全可以指定返回另外一个对象。

  1. class Foo {
  2. constructor() {
  3. return Object.create(null);
  4. }
  5. }
  6. new Foo() instanceof Foo
  7. // false

上面代码中,constructor函数返回一个全新的对象,结果导致实例对象不是Foo类的实例。

类必须使用new调用

类必须使用**new**调用,否则会报错。这是它跟普通构造函数的一个主要区别,后者不用**new**也可以执行。

  1. class Foo {
  2. constructor() {
  3. return Object.create(null);
  4. }
  5. }
  6. Foo()
  7. // TypeError: Class constructor Foo cannot be invoked without 'new'

实例对象

extends 继承

class 的继承方法。

  1. class Animal {
  2. constructor(name) { // 构造方法
  3. this.name = name
  4. }
  5. sleep() {
  6. return 'zzZZ~'
  7. }
  8. }
  9. class Flyable extends Animal {
  10. constructor(name) {
  11. super(name) // 执行父类构造方法
  12. }
  13. fly() {
  14. return 'flying...'
  15. }
  16. }
  17. var brid = new Flyable('brid')
  18. console.log(brid.name) // bire
  19. console.log(brid.sleep()) // zzZZ~
  20. console.log(brid.fly()) // flying...

this类型

链式调用

类的成员方法可以直接返回一个 this,这样就可以很方便地实现链式调用。

  1. class StudyStep {
  2. step1() {
  3. console.log('listen')
  4. return this
  5. }
  6. step2() {
  7. console.log('write')
  8. return this
  9. }
  10. }
  11. const s = new StudyStep()
  12. s.step1().step2() // 链式调用