JS实现键值对功能

来源:互联网 发布:大图分割打印软件 编辑:程序博客网 时间:2024/05/22 16:02
 

       //自定义键值对对象
        function Dictionary() {
            this.data = new Array();

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

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

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

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

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

原创粉丝点击