js中继承的几种用法总结(apply,call,prototype)

一,js中对象继承

js中有三种继承方式

1.js原型(prototype)实现继承

复制代码 代码如下:


<SPAN><SPAN><html> 
<body> 
<script type="text/javascript"> 
    function Person(name,age){ 
        this.name=name; 
        this.age=age; 
    } 
    Person.prototype.sayHello=function(){ 
        alert("使用原型得到Name:"+this.name); 
    } 
    var per=new Person("马小倩",21); 
    per.sayHello(); //输出:使用原型得到Name:马小倩 

     
    function Student(){} 
    Student.prototype=new Person("洪如彤",21); 
    var stu=new Student(); 
    Student.prototype.grade=5; 
    Student.prototype.intr=function(){ 
        alert(this.grade); 
    } 
    stu.sayHello();//输出:使用原型得到Name:洪如彤 
    stu.intr();//输出:5 
</script> 
</body> 
</html></SPAN></SPAN> 


2.构造函数实现继承

复制代码 代码如下:


<SPAN><html> 
<body> 
<script type="text/javascript"> 
    function  Parent(name){ 
        this.name=name; 
        this.sayParent=function(){ 
            alert("Parent:"+this.name); 
        } 
    } 

    function  Child(name,age){ 
        this.tempMethod=Parent; 
        this.tempMethod(name); 
        this.age=age; 
        this.sayChild=function(){ 
            alert("Child:"+this.name+"age:"+this.age); 
        } 
    } 

    var parent=new Parent("江剑臣"); 
    parent.sayParent(); //输出:“Parent:江剑臣” 
    var child=new Child("李鸣",24); //输出:“Child:李鸣 age:24” 
    child.sayChild(); 
</script> 
</body> 
</html></SPAN>


3.call , apply实现继承

复制代码 代码如下:


<SPAN><html> 
<body> 
<script type="text/javascript"> 
    function  Person(name,age,love){ 
        this.name=name; 
        this.age=age; 
        this.love=love; 
        this.say=function say(){ 
            alert("姓名:"+name); 
        } 
    } 

    //call方式 
    function student(name,age){ 
        Person.call(this,name,age); 
    } 

    //apply方式 
    function teacher(name,love){ 
        Person.apply(this,[name,love]); 
        //Person.apply(this,arguments); //跟上句一样的效果,arguments 
    } 

    //call与aplly的异同: 
    //1,第一个参数this都一样,指当前对象 
    //2,第二个参数不一样:call的是一个个的参数列表;apply的是一个数组(arguments也可以) 

    var per=new Person("武凤楼",25,"魏荧屏"); //输出:“武凤楼” 
    per.say(); 
    var stu=new student("曹玉",18);//输出:“曹玉” 
    stu.say(); 
    var tea=new teacher("秦杰",16);//输出:“秦杰” 
    tea.say(); 

</script> 
</body> 
</html></SPAN> 


二、call和apply的用法(详细介绍)

js中call和apply都可以实现继承,唯一的一点参数不同,func.call(func1,var1,var2,var3)对应的apply写法为:func.apply(func1,[var1,var2,var3])。

JS手册中对call的解释:

复制代码 代码如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdwzdy.html