zoukankan      html  css  js  c++  java
  • js实现重载和重写

    重载

    函数名相同,函数的参数列表不同(包括参数个数和参数类型),根据参数的不同去执行不同的操作。在JavaScript中,同一个作用域,出现两个名字一样的函数,后面的会覆盖前面的,所以 JavaScript 没有真正意义的重载。

     // 可以跟据arguments个数实现重载
        function fn(){
            switch(arguments.length){
                case 0:
                addFn(arguments.length)
                break
                case 1:
                deleteFn(arguments.length)
            }
        }
        function addFn(n){
            console.log(`fn函数参数个数为${n+1}个`)
        }
        function deleteFn(n){
            console.log(`fn函数参数个数为${n-1}个`)
        }
        fn()  // fn函数参数个数为1个
        fn(1) // fn函数参数个数为0个
    
    

    重写

    “实例中的指针仅指向原型,而不是指向构造函数”。
    “重写原型对象切断了现有原型与任何之前已经存在的对象实例之间的关系;它们引用的仍然是最初的原型”。

    var parent = function(name,age){
    	this.name = name;
    	this.age = age;
    }
     
    parent.prototype.showProper = function(){
    	console.log(this.name+":"+this.age);
    }
     
    var child = function(name,age){
    	parent.call(this,name,age);
    }
     
    // inheritance
    child.prototype = Object.create(parent.prototype);
    // child.prototype = new parent();
    child.prototype.constructor = child;
     
    // rewrite function
    child.prototype.showProper = function(){
    	console.log('I am '+this.name+":"+this.age);
    }
    
    var obj = new child('wozien','22');
    obj.showProper();
    

    上面这段代码通过使用寄生组合继承,实现子类私有继承父类私有,子类公有继承父类公有,达到重写父类的showProper

  • 相关阅读:
    Dotnet微服务:使用HttpclientFactory实现服务之间的通信
    Dotnet微服务:使用Steeltoe集成Eureka
    Lora服务器:Chirpstack连接Lora网关实战
    linux远程windwos软件rdesktop
    kali笔记
    ubuntu笔记
    Swagger使用
    Swagger接口导入Yapi
    Nexus上传自己本地jar包 和下载maven中央仓库里的包到nexus
    docker安装rabbitmq
  • 原文地址:https://www.cnblogs.com/mengxiangji/p/10403097.html
Copyright © 2011-2022 走看看