JS实现 java的Map
Posted 喃博思睿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现 java的Map相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
java Map 根据Map的值(value)取键(key)