码迷,mamicode.com
首页 > Web开发 > 详细

JS 键值对

时间:2015-07-01 15:37:08      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

function Map() {
 this.keys = new Array();
 this.data = new Array();
 //添加键值对
this.set = 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;
 };
 }

 

JS 键值对

标签:

原文地址:http://www.cnblogs.com/gaobing/p/4613027.html

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