码迷,mamicode.com
首页 > 编程语言 > 详细

JS实现 java的Map

时间:2017-09-05 15:48:32      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:cts   for   als   efi   nta   size   def   集合   java   

Map = function () {
this.objects = new Object();

// 加入元素
this.put = function (key, value) {
this.objects[key] = value;
};

// 删除元素
this.remove = function (key) {
this.objects[key] = undefined;
};

// 是否存在某键值
this.containsKey = function (key) {
return this.objects[key] ? true : false;
};

// 获取某元素
this.get = function(key) {
return this.objects[key];
};

// 是否存在某值
this.containsValue = function (value) {
for (var temp in this.objects) {
if (this.objects[temp] == value) {
return true;
}
}

return false;
};

// 集合大小
this.size = function () {
var counter = 0;
for (var temp in this.objects) {
counter ++;
}
return counter;
}
}

JS实现 java的Map

标签:cts   for   als   efi   nta   size   def   集合   java   

原文地址:http://www.cnblogs.com/echo-ling/p/7478582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!