摘要: TypeScript的类 类的基本使用 新建文件demo.ts,写入以下内容: class Father { content = "我是你父亲!"; say() { return this.content; } } let father = new Father(); console.log(fat 阅读全文
posted @ 2021-08-04 14:21 流云如水 阅读(67) 评论(0) 推荐(0)