【TypeScript】中定义与使用 Class 类的解读理解
在TypeScript中,类(Class)是一种用于创建复杂对象的构造器函数,它可以包含属性和方法。
定义一个类:
class MyClass {
property: string;
constructor(value: string) {
this.property = value;
}
method(): void {
console.log(this.property);
}
}
使用类:
// 实例化类
const myInstance = new MyClass("Hello, World!");
// 调用方法
myInstance.method(); // 输出: Hello, World!
在这个例子中,MyClass
是一个类,它有一个属性 property
和一个方法 method
。constructor
是一个特殊的方法,用于创建和初始化类中创建的对象。当使用 new
关键字创建类的实例时,constructor
会被自动调用。
评论已关闭