添加JavaScript重載函數的輔助方法2

來源:互聯網
上載者:User

代碼依然簡單。所以依然沒什麼好解釋的。。 複製代碼 代碼如下:/** KOverLoad
一個建立重載函數的輔助方法。
補充上次的函數。
@Author ake 2010-07-03
@weblog http://www.cnblogs.com/akecn
*/
var KOverLoad = function(scope) {
this.scope = scope || window; //預設添加方法到這個對象中。同時添加的方法的this指向該對象。
this.list = {}; //存放重載函數的地方。
return this;
};
KOverLoad.prototype = {
//添加一個重載的方法。
//@param arg<Function> 重載的方法。
add:function(arg, types) {
if(typeof arg == "function") {
var types = (types || []).join(",");
this.list[arg.length + types] = arg; //以參數數量和類型做標識儲存重載方法。很顯然如果你的重載方法參數數量
return this;
}
},
checkTypes: function(types) {
var type = [];
//console.log(typeof type); []方式建立的數組,其typeof類型為object
//如果需要判斷類型的話 還是用Object.prototype.toString.call(type) == "[object Array]"來判斷吧。
for(var i=0, it; it = types[i++];) {
type.push(typeof it);
}
return type.join(",");
},
//添加完所有的重載函數以後,調用該方法來建立重載函數。
//@param fc<String> 重載函數的方法名。
load:function(fc) {
var self = this, args, len, types;
this.scope[fc] = function() { //將指定範圍的指定方法 設為重載函數。
args = Array.prototype.slice.call(arguments); //將參數轉換為數組。
len = args.length;
types = self.checkTypes(args);
//console.log(self.list);
if(self.list[len + types]) { //根據參數數量調用符合的重載方法。
self.list[len + types].apply(self.scope, args); //這裡指定了範圍和參數。
}else if(self.list[len]){
self.list[len].apply(self.scope, args)
}else {
throw new Error("undefined overload type");
}
}
}
};

下面是樣本: 複製代碼 代碼如下:var s = {};
new KOverLoad(s) //設定方法綁定的位置。命名空間?
.add(function(a) {
console.log("one",a,this)
},["string"])
.add(function(a,b) {
console.log("two",a,b,this)
},["string","string"])
.add(function(a,b,c) {
console.log("three",a,b,c,this)
},["string", "number", "string"])
.add(function(a,b,c,d) {
console.log("four",a,b,c,d,this)
})
.load("func"); //在這裡的參數就是要建立的重載函數的方法名稱。
s.func("a","b");

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.