TypeScript学习笔记#6 构造函数
class Dog {
name: string;
age: number;
// 构造函数
// 构造函数会在创建对象时调用
constructor(name: string, age: number) {
// 在实例方法中,this就表示当前的实例
// 在实例方法中,this就表示当前当前的实例
// 在构造函数中当前对象就是当前新建的那个对象
// 可以通过this向新建的对象中添加属性
this.name = name;
this.age = age;
}
bark() {
alert("汪汪汪");
}
}
const dog = new Dog("小黑", 2);
console.log("dog", dog);
标签:TypeScript,name,age,dog,笔记,实例,构造函数
From: https://www.cnblogs.com/yuanZi666/p/17203638.html