js如何是利用apply实现继承
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js如何是利用apply实现继承相关的知识,希望对你有一定的参考价值。
js如何是利用apply实现继承:
javascript是一种面向对象的语言,当然继承是它的重要特征之一,比如常规的可以使用原型实现继承,不过使用apply可是可以实现继承的,下面就通过代码实例介绍一下,关于apply函数这里就不介绍了,具体可以参阅javascript的call()和apply()的作用和区别一章节。 下面看代码实例:
function Parent(username){ this.username=username; this.sayHello=function(){ alert(this.username); } } function Child(username,password){ Parent.apply(this,new Array(username)); this.password=password; this.sayWorld=function(){ alert(this.password); } } var parent=new Parent("蚂蚁部落"); var child=new Child("antzone","8888"); parent.sayHello(); child.sayHello(); child.sayWorld();
以上代码实现了简单的继承效果,代码比较简单这里就不多介绍了,如有任何问题可以跟帖留言。
关于this的指向可以参阅javascript的this用法详解一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11309
更多内容可以参阅:http://www.softwhy.com/javascript/
以上是关于js如何是利用apply实现继承的主要内容,如果未能解决你的问题,请参考以下文章