js 对 MAP 的操作

 <script>    
function Map() {   
 var struct = function(key, value) {   
  this.key = key;   
  this.value = value;   
 }   
    
 var put = function(key, value){   
  for (var i = 0; i < this.arr.length; i++) {   
   if ( this.arr[i].key === key ) {   
    this.arr[i].value = value;   
    return;   
   }   
  }   
   this.arr[this.arr.length] = new struct(key, value);   
 }   
    
 var get = function(key) {   
  for (var i = 0; i < this.arr.length; i++) {   
   if ( this.arr[i].key === key ) {   
     return this.arr[i].value;   
   }   
  }   
  return null;   
 }   
    
 var remove = function(key) {   
  var v;   
  for (var i = 0; i < this.arr.length; i++) {   
   v = this.arr.pop();   
   if ( v.key === key ) {   
    continue;   
   }   
   this.arr.unshift(v);   
  }   
 }   
    
 var size = function() {   
  return this.arr.length;   
 }   

 var isEmpty = function() {   
  return this.arr.length <= 0;   
 }   
  
 this.arr = new Array();   
 this.get = get;   
 this.put = put;   
 this.remove = remove;   
 this.size = size;   
 this.isEmpty = isEmpty;   
}   


</script>

 <script>   
   var map = new Map();  
    map.put("name", "1");
   map.put("firstName", "2");
   map.put("lastName", "3");
   map.put("sex", "4");
   map.put("email", "5");
   map.put("industry","6");
   map.put("company", "7");
   map.put("post", "8");
   map.put("address", "9");
   map.put("phone", "10");
   map.put("phone_2","11");
   map.put("fax","12");
   map.put("qq","13");
   map.put("msn","14");
   map.put("skype","15");
   map.put("other","16");
   map.put("other_2","17");
   map.put("other_3","18");
   map.put("other_4","19");
   map.put("other_5","20");   
   
  
  // alert("map的大小为:" + map.size()) ;
  //   map.remove("other_2");
  //    alert("map移除一个元素后的大小为:" + map.size()); 
/*  alert("key为re的map中存储的对象为:" + map.get("re"));   
   map.remove("re");   
  alert("移除key为re的对象后,获取key为re的map中存储的对象为:" + map.get("re"));   
 alert("map移除一个元素后的大小为:" + map.size());   
 alert("map是否是一个空map:" + map.isEmpty());    */

</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值