class

2018-05-09  本文已影响0人  大脸猫_2e21
class Animal{
        constructor(x,y){
            this.x=x
            this.y=y
        }
        sum(){
            return this.x+this.y
        }
    }
    class Human extends Animal{
        constructor(x,y,z){
            super(x,y)  //继承父类的this
            this.z=z
        }
        sum(){
            return this.z+super.sum() //调用父类的this
        }
    }

    let person=new Human(2,3,3)
上一篇下一篇

猜你喜欢

热点阅读