面向对象 概念 // 类,即模版 class People { constructor(name, age) { this.name = name this.age = age } eat() {} spea...