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

[转载]HashMap的JavaScript简洁实现

时间:2014-05-15 14:00:14      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

转载:http://thiner.iteye.com/blog/294736

今天在工作中碰到一个问题,需要在JavaScript使用类似Java的HashMap的数据类型,可惜JavaScript自身不提供这种数据类型,于是想自己实现一个。 
在Google上搜到一个老外论坛(http://www.hftonline.com/forum/showthread.php?t=12882)上的实现方式,感觉非常简洁明了,于是按照他的思路,扩充了一下,加了两个自己想要的方法,用着蛮爽。

bubuko.com,布布扣
var hashMap = {  
    Set : function(key,value){this[key] = value},  
    Get : function(key){return this[key]},  
    Contains : function(key){return this.Get(key) == null?false:true},  
    Remove : function(key){delete this[key]}  
};
bubuko.com,布布扣

使用方法示例: 

bubuko.com,布布扣
hashMap.Set("name","John Smith");  
hashMap.Set("age",24);  
hashMap.Get("name");//John Smith  
hashMap.Contains("title");//false  
hashMap.Contains("name");//true  
hashMap.Remove("age");
bubuko.com,布布扣

够简洁吧。而且比用数组方式实现更好的地方在于,不会出现数组越界错误。

[转载]HashMap的JavaScript简洁实现,布布扣,bubuko.com

[转载]HashMap的JavaScript简洁实现

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/skyeyh/p/3729311.html

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