ArrayList在命名标准上是独一无二的。这是等效项:
Array.push -> ArrayList.add(Object o); // Append the listArray.pop -> ArrayList.remove(int index); // Remove list[index]Array.shift -> ArrayList.remove(0); // Remove first elementArray.unshift -> ArrayList.add(int index, Object o); // Prepend the list
请注意,
unshift这不会 删除 元素,而是 将 一个元素 添加
到列表中。还请注意,Java和JS之间的极端情况行为可能会有所不同,因为它们各自都有自己的标准。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)