js java map_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;

}

}

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值