class
是一种函数类型,但不使用关键字function
为了启动它,我们使用关键字class
,并且属性被分配在一个内部constructor()
方法:
创建一个Car类,然后根据Car类创建一个名为"mycar"的对象:
class Car { // Create a class
constructor(brand) { // Class constructor
this.carname = brand; // Class body/properties
}
}
mycar = new Car("Ford"); // Create an object of Car class
Method | Description |
---|---|
constructor() | A special method for creating and initializing objects created within a class |
Keyword | Description |
---|---|
extends | Extends a class (inherit) |
static | Defines a static method for a class |
super | Refers to the parent class |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!