简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

javascript 实现map集合

来源:易贤网   阅读:718 次  日期:2015-04-08 14:05:57

温馨提示:易贤网小编为您整理了“javascript 实现map集合”,方便广大网友查阅!

代码如下:

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技术专栏

更多信息请查看脚本栏目
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:jQuery制作简洁的图片轮播效果
下一篇:使用jquery制作弹出框效果
易贤网手机网站地址:javascript 实现map集合
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!