您的位置:首页 > Web前端 > JavaScript

js的5种继承

2015-11-10 14:28 387 查看
//1、继承第一种方式:对象冒充
function Parent1(username){
this.username = username;
this.hello = function(){
console.log(this.username);
}
}
function Child1(username,password){
this.method = Parent; //第一步:this.method是作为一个临时的属性,并且指向Parent所指向的对象,
this.method(username);//第二步:执行this.method方法,即执行Parent所指向的对象函数 
delete this.method;//第三步:销毁this.method属性,即此时Child就已经拥有了Parent的所有属性和方法
this.password = password;
this.word = function(){
console.log(this.password);
}
}
var parent = new Parent1("zhangsan");
var child = new Child1("lisi","123456");
parent.hello();
child.hello();
child.word();

//2、继承第二种方式:call()方法方式
// call方法是Function类中的方法 
// call方法的第一个参数的值赋值给类(即方法)中出现的this 
// call方法的第二个参数开始依次赋值给类(即方法)所接受的参数
function test(str){
alert(this.name + "" + str);
}
var object = new Object();
object.name = "zhangsan";
test.call(object,"langsin");//此时,第一个参数值object传递给了test类(即方法)中出现的this,而第二个参数"langsin"则赋值给了test类(即方法)的str 
function Parent2(username){
this.username = username;
this.hello = function(){
alert(this.username);
}
}
function Child2(username,password){
Parent.call(this,username);
this.password = password;
this.word = function(){
alert(this.password);
}
}
var parent = new Parent2("zhangsan");
var child = new Child2("lisi","123456");
parent.hello();
child.hello();
child.word();

3.继承的第三种方式:apply()方法方式 
apply方法接受2个参数, 
A、第一个参数与call方法的第一个参数一样,即赋值给类(即方法)中出现的this 
B、第二个参数为数组类型,这个数组中的每个元素依次赋值给类(即方法)所接受的参数 
function Parent3(username){
this.username = username;
this.hello = function(){
alert(this.username);
}
}
function Child3(username,password){
Parent.apply(this,new Array(username));

this.password = password;
this.word = function(){
alert(this.password);
}
}
var parent = new Parent3("zhangsan");
var child = new Child3("lisi","123456");
parent.hello();
child.hello();
child.word();

//4、继承的第四种方式:原型链方式,即子类通过prototype将所有在父类中通过prototype追加的属性和方法都追加到Child,从而实现了继承
function Person4(){

}
Person.prototype.hello = "hello";
Person.prototype.sayHello = function(){
alert(this.hello);
}
function Child4(){

}
Child.prototype = new Person4();//这行的作用是:将Parent中将所有通过prototype追加的属性和方法都追加到Child,从而实现了继承 
Child.prototype.word = "word";
Child.prototype.sayWorld = function(){
alert(this.word);
}
var c = new Child4();
c.sayHello();
c.sayWorld();

//5、继承的第五种方式:混合方式  混合了call方式、原型链方式 
function Parent5(hello){
this.hello = hello;
}
Parent.prototype.sayHello = function(){
alert(this.hello);
}
function Child5(hello,world){
Parent.call(this,hello);//将父类的属性继承过来 
this.world = world;
}
Child.prototype = new Parent5();//将父类的方法继承过来 
Child.prototype.sayWorld = function(){
alert(this.world);
}
var c = new Child5("zhangsan","lisi");
c.sayHello();
c.sayWorld();
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: