欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Typescript学习系列---《类》

程序员文章站 2022-03-27 20:44:16
...
class Person {
    name: string; //属性 前面省略了public关键字
    constructor(n: string) { // 构造函数, 实例化类的时候触发的方法
        this.name = n;
    }
    run():void {
        console.log(this.name);
    }
}
var p = new Person('Jack');
p.run();

Typescript学习系列---《类》

相关标签: TypeScript