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

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

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

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

    上面代码定义了一个“类”,可以看到里面有一个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属性,在 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类的实例,它的constructor方法就是B类原型的constructor方法。

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

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

    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. var Point = function (x, y) {
    2. // ...
    3. };
    4. Point.prototype.toString = function() {
    5. // ...
    6. };
    7. Object.keys(Point.prototype)
    8. // ["toString"]
    9. Object.getOwnPropertyNames(Point.prototype)
    10. // ["constructor","toString"]

    上面代码采用 ES5 的写法,toString方法就是可枚举的。

    constructor 方法

    constructor方法是类的默认方法,通过new命令生成对象实例时,自动调用该方法。一个类必须有constructor方法,如果没有显式定义,一个空的constructor方法会被默认添加。

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

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

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

    类必须使用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'

    生成类的实例的写法,与 ES5 完全一样,也是使用new命令。前面说过,如果忘记加上new,像函数那样调用Class,将会报错。

    1. class Point {
    2. // ...
    3. }
    4. // 报错
    5. var point = Point(2, 3);
    6. // 正确
    7. var point = new Point(2, 3);

    与 ES5 一样,实例的属性除非显式定义在其本身(即定义在this对象上),否则都是定义在原型上(即定义在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. }
    11. var point = new Point(2, 3);
    12. point.toString() // (2, 3)
    13. point.hasOwnProperty('x') // true
    14. point.hasOwnProperty('y') // true
    15. point.hasOwnProperty('toString') // false
    16. point.__proto__.hasOwnProperty('toString') // true

    上面代码中,xy都是实例对象point自身的属性(因为定义在this变量上),所以hasOwnProperty方法返回true,而toString是原型对象的属性(因为定义在Point类上),所以hasOwnProperty方法返回false。这些都与 ES5 的行为保持一致。

    与 ES5 一样,类的所有实例共享一个原型对象。

    1. var p1 = new Point(2,3);
    2. var p2 = new Point(3,2);
    3. p1.__proto__ === p2.__proto__
    4. //true

    上面代码中,p1p2都是Point的实例,它们的原型都是Point.prototype,所以__proto__属性是相等的。

    这也意味着,可以通过实例的__proto__属性为“类”添加方法。

    1. var p1 = new Point(2,3);
    2. var p2 = new Point(3,2);
    3. p1.__proto__.printName = function () { return 'Oops' };
    4. p1.printName() // "Oops"
    5. p2.printName() // "Oops"
    6. var p3 = new Point(4,2);
    7. p3.printName() // "Oops"

    上面代码在p1的原型上添加了一个printName方法,由于p1的原型就是p2的原型,因此p2也可以调用这个方法。而且,此后新建的实例p3也可以调用这个方法。这意味着,使用实例的__proto__属性改写原型,必须相当谨慎,不推荐使用,因为这会改变“类”的原始定义,影响到所有实例。

    取值函数(getter)和存值函数(setter)

    与 ES5 一样,在“类”的内部可以使用getset关键字,对某个属性设置存值函数和取值函数,拦截该属性的存取行为。

    1. class MyClass {
    2. constructor() {
    3. // ...
    4. }
    5. get prop() {
    6. return 'getter';
    7. }
    8. set prop(value) {
    9. console.log('setter: '+value);
    10. }
    11. }
    12. let inst = new MyClass();
    13. inst.prop = 123;
    14. // setter: 123
    15. inst.prop
    16. // 'getter'

    上面代码中,prop属性有对应的存值函数和取值函数,因此赋值和读取行为都被自定义了。

    存值函数和取值函数是设置在属性的 Descriptor 对象上的。

    1. class CustomHTMLElement {
    2. constructor(element) {
    3. this.element = element;
    4. }
    5. get html() {
    6. return this.element.innerHTML;
    7. }
    8. set html(value) {
    9. this.element.innerHTML = value;
    10. }
    11. }
    12. var descriptor = Object.getOwnPropertyDescriptor(
    13. );
    14. "get" in descriptor // true
    15. "set" in descriptor // true

    上面代码中,存值函数和取值函数是定义在html属性的描述对象上面,这与 ES5 完全一致。

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

    1. class Square {
    2. constructor(length) {
    3. // ...
    4. }
    5. [methodName]() {
    6. // ...
    7. }
    8. }

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

    Class 表达式

    与函数一样,类也可以使用表达式的形式定义。

    上面代码使用表达式定义了一个类。需要注意的是,这个类的名字是Me,但是Me只在 Class 的内部可用,指代当前类。在 Class 外部,这个类只能用MyClass引用。

    1. let inst = new MyClass();
    2. inst.getClassName() // Me
    3. Me.name // ReferenceError: Me is not defined

    上面代码表示,Me只在 Class 内部有定义。

    如果类的内部没用到的话,可以省略Me,也就是可以写成下面的形式。

    1. const MyClass = class { /* ... */ };
    1. let person = new class {
    2. constructor(name) {
    3. this.name = name;
    4. }
    5. sayName() {
    6. console.log(this.name);
    7. }
    8. }('张三');
    9. person.sayName(); // "张三"

    上面代码中,person是一个立即执行的类的实例。

    (1)严格模式

    类和模块的内部,默认就是严格模式,所以不需要使用use strict指定运行模式。只要你的代码写在类或模块之中,就只有严格模式可用。考虑到未来所有的代码,其实都是运行在模块之中,所以 ES6 实际上把整个语言升级到了严格模式。

    (2)不存在提升

    类不存在变量提升(hoist),这一点与 ES5 完全不同。

    1. new Foo(); // ReferenceError
    2. class Foo {}

    上面代码中,Foo类使用在前,定义在后,这样会报错,因为 ES6 不会把类的声明提升到代码头部。这种规定的原因与下文要提到的继承有关,必须保证子类在父类之后定义。

    1. {
    2. let Foo = class {};
    3. class Bar extends Foo {
    4. }
    5. }

    上面的代码不会报错,因为Bar继承Foo的时候,Foo已经有定义了。但是,如果存在class的提升,上面代码就会报错,因为class会被提升到代码头部,而let命令是不提升的,所以导致Bar继承Foo的时候,Foo还没有定义。

    (3)name 属性

    由于本质上,ES6 的类只是 ES5 的构造函数的一层包装,所以函数的许多特性都被Class继承,包括name属性。

    1. class Point {}
    2. Point.name // "Point"

    name属性总是返回紧跟在class关键字后面的类名。

    (4)Generator 方法

    如果某个方法之前加上星号(*),就表示该方法是一个 Generator 函数。

    1. class Foo {
    2. constructor(...args) {
    3. this.args = args;
    4. }
    5. * [Symbol.iterator]() {
    6. for (let arg of this.args) {
    7. yield arg;
    8. }
    9. }
    10. }
    11. for (let x of new Foo('hello', 'world')) {
    12. console.log(x);
    13. }
    14. // hello
    15. // world

    上面代码中,Foo类的Symbol.iterator方法前有一个星号,表示该方法是一个 Generator 函数。Symbol.iterator方法返回一个Foo类的默认遍历器,for...of循环会自动调用这个遍历器。

    (5)this 的指向

    类的方法内部如果含有this,它默认指向类的实例。但是,必须非常小心,一旦单独使用该方法,很可能报错。

    1. class Logger {
    2. printName(name = 'there') {
    3. this.print(`Hello ${name}`);
    4. }
    5. print(text) {
    6. console.log(text);
    7. }
    8. }
    9. const logger = new Logger();
    10. const { printName } = logger;
    11. printName(); // TypeError: Cannot read property 'print' of undefined

    上面代码中,printName方法中的this,默认指向Logger类的实例。但是,如果将这个方法提取出来单独使用,this会指向该方法运行时所在的环境(由于 class 内部是严格模式,所以 this 实际指向的是undefined),从而导致找不到print方法而报错。

    一个比较简单的解决方法是,在构造方法中绑定this,这样就不会找不到print方法了。

    1. class Logger {
    2. constructor() {
    3. this.printName = this.printName.bind(this);
    4. }
    5. // ...
    6. }

    另一种解决方法是使用箭头函数。

    箭头函数内部的this总是指向定义时所在的对象。上面代码中,箭头函数位于构造函数内部,它的定义生效的时候,是在构造函数执行的时候。这时,箭头函数所在的运行环境,肯定是实例对象,所以this会总是指向实例对象。

    1. function selfish (target) {
    2. const cache = new WeakMap();
    3. const handler = {
    4. get (target, key) {
    5. const value = Reflect.get(target, key);
    6. if (typeof value !== 'function') {
    7. return value;
    8. }
    9. if (!cache.has(value)) {
    10. cache.set(value, value.bind(target));
    11. }
    12. return cache.get(value);
    13. }
    14. };
    15. const proxy = new Proxy(target, handler);
    16. return proxy;
    17. }
    18. const logger = selfish(new Logger());