Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/wangzheng0822/algo
/ removeLast
Method
removeLast
java/05_array/GenericArray.java:114–116 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
112
113
// 删除末尾元素
114
public
T removeLast() {
115
return
remove(size - 1);
116
}
117
118
// 从数组中删除指定元素
119
public
void
removeElement(T e) {
Callers
nothing calls this directly
Calls
1
remove
Method · 0.95
Tested by
no test coverage detected