摘要: class Person{ } 这就是 ts 里面最基础的类 class Person { name = 'zina'; getName() { return this.name } } // 有了类后创建一个实例 const person = new Person(); console.log(p 阅读全文
posted @ 2020-06-02 06:26 wzndkj 阅读(354) 评论(0) 推荐(0)