臨時調用call()與apply()方法

來源:互聯網
上載者:User

標籤:

當在某個局域範圍內要調用建構函式中或者其他局域範圍內的方法

此時可以用到臨時調用方法call與apply

 

雖然這兩個方法都是起臨時調用的功能,但是用法不一樣

call(obj,val)

obj:對象名,建構函式用指代this;  val:指代屬性值

apply(obj,arr)

obj:對象名,建構函式用指代this;  arr:屬性值的數組

 

執行個體一:

function SuperType(name){
  this.name = name;
}

function SubType(){
  //SuperType.call(this,"Lucy");    //臨時調用建構函式SuperType裡面的name屬性
  SuperType.apply(this,["Lucy"]);  
  this.age = 19;
}

var instance = new SubType();
alert(instance.name);   //Lucy

 

 

//但是有些場合只能用特定的方法,不能互換

執行個體二:

取數組中最大值:

function isMax(arr){return Math.max.apply(null,arr)}

var nums = isMax([2,3,4,5,6]);

alert(nums);   //6

 

臨時調用call()與apply()方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.