标签: typescript
我进行了广泛的搜索但是找不到任何令人满意的答案,为什么在打字稿类中有字段
class car{ name:string //Whats the use of this when we already have properties in constructor constructor(name:string){ this.name:name; } }