本文主要是介绍使用apply方法实现javascript中的对象继承,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
javascript中的对象继承的方法有很多,在接下来的文章中为大家介绍下使用apply方法是如何实现的代码如下:
<script type="text/javascript">
//使用apply方法实现对象继承
function Parent(username) {
this.username = username;
this.sayHello = function() {
alert(this.username);
}
}
function Child(username, password) {
Parent.apply(this, new Array(username));
//和下面一样
//Parent.apply(this, [username]);
unity3d教程http://www.unitymanual.com/
this.password = password;
this.sayWorld = function() {
alert(this.password);
}
}
var parent = new Parent("zhangsan");
var child = new Child("lisi", "123");
parent.sayHello();
child.sayHello();
child.sayWorld();
</script>
这篇关于使用apply方法实现javascript中的对象继承的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!