class

作者: 大脸猫_2e21 | 来源:发表于2018-05-09 22:57 被阅读0次
    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)
    

    相关文章

      网友评论

          本文标题:class

          本文链接:https://www.haomeiwen.com/subject/cqrarftx.html