MCPcopy
hub / github.com/wangzheng0822/algo / addLast

Method addLast

java/05_array/GenericArray.java:85–87  ·  view source on GitHub ↗
(T e)

Source from the content-addressed store, hash-verified

83
84 // 向数组尾插入元素
85 public void addLast(T e) {
86 add(size, e);
87 }
88
89 // 删除 index 位置的元素,并返回
90 public T remove(int index) {

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected