加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

适用js数组存放键值对map

(2011-01-20 14:22:15)
标签:

键值

获取

自定义

数组

存放

it

分类: JavaScript

//自定义Map对象
function Map(){
 this.keys = new Array();
 this.data = new Array();

 
 this.put = function(key,value){
  if(this.data[key] == null){
   this.keys.push(value);
  }
  this.data[key] = value;
 };

 
 this.get = function(key){
  return this.data[key];
 };

 
 this.remove = function(key){
  this.keys.remove(key);
  this.data[key] = null;
 };

 
 this.isEmpty = function(){
  return this.keys.length == 0;
 };

 
 this.size = function(){
  return this.keys.length;
 };
}

 

 

 

//使用 例子

var  bb = new Map();

bb.put("cc",dd);

 

alert(bb.get("cc"));

 

 

 

 

 

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有