javascript 實現(xiàn)map集合
來源:易賢網(wǎng) 閱讀:682 次 日期:2015-04-08 14:05:57
溫馨提示:易賢網(wǎng)小編為您整理了“javascript 實現(xiàn)map集合”,方便廣大網(wǎng)友查閱!

代碼如下:

var Map = function (){

/************基礎變量**************/

var hashmap = {};

var keys = [];

var vals = [];

var entrys = [];

var size = 0;

var index = {};

var Entry = function(key,value){

var entryKey = key;

var entryValue = value;

this.getKey = function (){

return entryKey;

};

this.getValue = function(){

return entryValue;

};

};

/************基本方法 按字母排序**************/

this.clear = function(key) {

hashmap[key] = undefined;

var i = index[key];

entrys.splice(i,1);

vals.splice(i,1);

keys.splice(i,1);

size --;

};

this.entrySet = function() {

return entrys;

};

this.get = function(key){

return hashmap[key];

};

this.isEmpty = function() {

if(hashmap) return true;

return false;

};

this.keySet = function() {

return keys;

};

this.put = function(key,value){

if(!this.get(key)){

entrys.push(new Entry(key,value));

keys.push(key);

vals.push(value);

index[key] = size;

size ++;

} else {

var i = index[key];

entrys[i] = new Entry(key,value);

vals[i] = value;

}

hashmap[key] = value;

};

this.size = function() {

return size;

};

this.values = function() {

return vals;

};

};

/************擴展方法**************/

Map.prototype = {

containsKey : function(key) {

if(this.get(key)) return true;

return false;

},

putAll : function(set) {

for(var e in set){

if(set[e]){

this.put(e,set[e]);

}

}

},

remove : function(key) {

var v = this.get(key);

this.clear(key);

return v;

}

};

var h = new Map();

h.put('a',10);

h.put('b',11);

h.put('c',3);

h.put('d',5);

console.info(h.size());

h.clear('a');

console.info(h.containsKey('a'));

console.info(h.containsKey('b'));

console.info(h.size());

console.log(h.entrySet());

console.log(h.keySet());

console.log(h.values());

for(var i in h.entrySet()){

var obj = h.entrySet()[i];

console.log(obj.getKey() + ":" + obj.getValue());

}

更多信息請查看IT技術專欄

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:javascript 實現(xiàn)map集合

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)