!DOCTYPE htmlhtml head meta charset=UTF-8 titletitle head body script class Father constructorxy thisx=x; thisy=y; sum consolelogthisx+thisy class Son ex
代码有一个拼写错误,Son类的构造函数应该是constructor而不是construstor:
class Son extends Father{ constructor(x,y){ // 正确写法 super(x,y) } }
原文地址: https://www.cveoy.top/t/topic/fttp 著作权归作者所有。请勿转载和采集!