码迷,mamicode.com
首页 > 其他好文 > 详细

class关键字

时间:2017-11-10 21:55:29      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:cto   this   logs   struct   style   func   span   tor   air   

class的数据类型为function,可以看做构造函数的另一种写法。事实上,类的所有方法都定义在类的prototype属性上面。
一、声明class

class Animal {
    constructor(eye,hair) {
        this.eye = eye;
        this.hair = hair;
    }

    speak() {
        console.log(`我有${this.eye}的眼睛和${this.hair}的头发。`)
    }
}

let ains = new Animal(‘black‘,‘white‘)
ains.speak();

二、class表达式

let person = new class {
  constructor(name) {
    this.name = name;
  }

  sayName() {
    console.log(this.name);
  }
}(‘张三‘);

person.sayName(); // "张三"

 

class关键字

标签:cto   this   logs   struct   style   func   span   tor   air   

原文地址:http://www.cnblogs.com/camille666/p/es_class.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!