最赞回答 / 慧眼识天下 Person.call(this,name,age); 其中的Person是指视频中的构造函数:function Person(name,age){ this.name = name; this.age = age;}Person.call(this,name,age);其中的call是指Function.prototype.call(),其中的this在其上下文中指向Student对象。因此,Person.call(this,name,age);是调用Person构造函数,并把Person...