摘要: typescript 中的类与 es6 中的类在使用上基本一样,举个小例子: class Person{ name:string; constructor(name:string){ this.name = name } sayHi(){ console.log('hi') } } // 定义 Te 阅读全文
posted @ 2020-05-03 09:49 黑色瓶子 阅读(324) 评论(0) 推荐(0) 编辑