1、方法定義
call方法:
語法:call([thisObj[,arg1[, arg2[,?? [,.argN]]]]])? 實(shí)參
定義:調(diào)用一個(gè)對(duì)象的一個(gè)方法吏廉,以另一個(gè)對(duì)象替換當(dāng)前對(duì)象匈勋。
說明:
call 方法可以用來代替另一個(gè)對(duì)象調(diào)用一個(gè)方法把还。call 方法可將一個(gè)函數(shù)的對(duì)象上下文從初始的上下文改變?yōu)橛?thisObj 指定的新對(duì)象疮装。
如果沒有提供 thisObj 參數(shù)阅虫,那么 Global 對(duì)象被用作 thisObj托酸。
apply方法:
語法:apply([thisObj[,argArray]])? 實(shí)參必須寫 數(shù)組里
定義:應(yīng)用某一對(duì)象的一個(gè)方法褒颈,用另一個(gè)對(duì)象替換當(dāng)前對(duì)象柒巫。
說明:
如果 argArray 不是一個(gè)有效的數(shù)組或者不是 arguments 對(duì)象,那么將導(dǎo)致一個(gè) TypeError谷丸。
如果沒有提供 argArray 和 thisObj 任何一個(gè)參數(shù)堡掏,那么 Global 對(duì)象將被用作 thisObj, 并且無法被傳遞任何參數(shù)刨疼。
function add(a,b){
alert(a+b);}
function sub(a,b){
alert(a-b);}
add.call(sub,3,1);
這個(gè)例子中的意思就是用 add 來替換 sub泉唁,add.call(sub,3,1) == add(3,1) ,所以運(yùn)行結(jié)果為:alert(4); // 注意:js 中的函數(shù)其實(shí)是對(duì)象揩慕,函數(shù)名是對(duì) Function 對(duì)象的引用亭畜。
function Animal(){
this.name ="Animal";
this.showName = function(){
alert(this.name);}
}
function Cat(){
this.name ="Cat";}
var animal =newAnimal();
var cat =newCat();
//通過call或apply方法,將原本屬于Animal對(duì)象的showName()方法交給對(duì)象cat來使用了迎卤。
//輸入結(jié)果為"Cat"
animal.showName.call(cat,",");
//animal.showName.apply(cat,[]);
call 的意思是把 animal 的方法放到cat上執(zhí)行拴鸵,原來cat是沒有showName() 方法,現(xiàn)在是把a(bǔ)nimal 的showName()方法放到 cat上來執(zhí)行蜗搔,所以this.name 應(yīng)該是 Cat
實(shí)現(xiàn)繼承
function Animal(name){
this.name = name;
this.showName = function(){
alert(this.name);}
}
function Cat(name){
Animal.call(this, name);}
var cat =newCat("Black Cat");
cat.showName();
Animal.call(this) 的意思就是使用 Animal對(duì)象代替this對(duì)象宝踪,那么 Cat中不就有Animal的所有屬性和方法了嗎,Cat對(duì)象就能夠直接調(diào)用Animal的方法以及屬性了.
多重繼承
function Class10()
{
this.showSub = function(a,b)
{alert(a-b);}
}
function Class11()
{this.showAdd = function(a,b){
alert(a+b);}
}
function Class2()
{Class10.call(this);
Class11.call(this);}
很簡單碍扔,使用兩個(gè) call 就實(shí)現(xiàn)多重繼承了
當(dāng)然,js的繼承還有其他方法秕重,例如使用原型鏈不同,這個(gè)不屬于本文的范疇,只是在此說明call 的用法溶耘。說了call 二拐,當(dāng)然還有 apply,這兩個(gè)方法基本上是一個(gè)意思凳兵,區(qū)別在于 call 的第二個(gè)參數(shù)可以是任意類型百新,而apply的第二個(gè)參數(shù)必須是數(shù)組,也可以是arguments
還有 callee庐扫,caller..