摘要: 在ES6中,类中定义的方法,是放在原型对象的,供实例对象引用。 //创建一个Person类 class Person { constructor(name,age) { this.name = name; this.age = age; } } class Student extends Perso 阅读全文
posted @ 2022-07-31 11:28 JohnYang819 阅读(308) 评论(0) 推荐(0) 编辑