• 继承的几种方式


    方法一:对象冒充

       

        function Parent(username){
            this.username = username;
            this.hello = function(){
                alert(this.username);
            } }
        function Child(username,password){
        //通过以下3行实现将Parent的属性和方法追加到Child中,从而实现继承
        // 第一步:this.method是作为一个临时的属性,并且指向Parent所指向的对象,
        // 第二步:执行this.method方法,即执行Parent所指向的对象函数
        // 第三步:销毁this.method属性,即此时Child就已经拥有了Parent的所有属性和方法
            this.method = Parent;
            this.method(username);//最关键的一行
            delete this.method;
            this.password = password;
            this.world = function(){
                alert(this.password);
            } }
            var parent = new Parent("zhangsan");
            var child = new Child("lisi","123456");
            parent.hello();
            child.hello();
            child.world();

     方法二:call方式

     function Parent(username){
             this.username = username;
             this.hello = function(){
                 alert(this.username);
             } }
        function Child(username,password){
            Parent.call(this,username);
            this.password = password;
            this.world = function(){
                alert(this.password);
            } }
        var parent = new Parent("zhangsan");
        var child = new Child("lisi","123456");
        parent.hello();
        child.hello();
        child.world();

    方法三:apply方式

        function Parent(username){
            this.username = username;
            this.hello = function(){
                alert(this.username);
            }  }
        function Child(username,password){
            Parent.apply(this,new Array(username));
            this.password = password;
            this.world = function(){
                alert(this.password);
            }  }
        var parent = new Parent("zhangsan");
        var child = new Child("lisi","123456");
        parent.hello();
        child.hello();
        child.world();
  • 相关阅读:
    【luogu】P1772物流运输(最短路+DP)
    【Bzoj】1001狼抓兔子(平面图最小割转对偶图最短路)
    后记
    【Luogu】P2680运输计划(树上差分+二分)
    【Luogu】P2059卡牌游戏(概率DP)
    【Luogu】P2051中国象棋(DP)
    概率与期望学习笔记
    【Luogu】P2894酒店Hotel(线段树)
    21.Mysql Server优化
    20.Mysql锁机制
  • 原文地址:https://www.cnblogs.com/ruirui9820/p/6761532.html
Copyright © 2020-2023  润新知