這次的文章分享給大家關於JS實現JAVA的List功能的程式碼,有興趣的朋友可以看看
function List(){ var list = new Array(); /* 添加元素 */ this.add = function(obj){ list[list.length] = obj; } /* 根据下标获得元素 */ this.get = function(index){ return list[index]; } /* 根据下标移除元素 */ this.remove = function(index){ var obj = list[index]; list.splice(index, 1); return obj; } /* 清空对象中元素 */ this.clear = function(){ list.splice(0, list.length); } /* 对象元素大小 */ this.size = function(){ return list.length; } }
#
以上是JS實作JAVA的List功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!