黑马程序员技术交流社区

标题: 关于类的继承 [打印本页]

作者: Hear    时间: 2019-9-12 10:47
标题: 关于类的继承
<script>
    class Father{
        constructor(x,y){
            this.x = 5;
            this.y = 10;
            console.log(this)
        }
        sum(){
            alert(this.x+this.y + this.z)
        }
    }
    class Son extends Father{
        constructor(x,y,z){
            super(x,y);
            this.z = z
            console.log(this)
        }
    }
    var son = new Son(1,2,3);
    son.sum();      
        
        </script>







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2