1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update LinkedList.md

This commit is contained in:
SnailClimb 2019-03-05 15:30:27 +08:00 committed by GitHub
parent bfec1e5471
commit 9f1fcc236a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,7 +288,7 @@ public int lastIndexOf(Object o) {
return indexOf(o) != -1; return indexOf(o) != -1;
} }
``` ```
###<font face="楷体" id="3.6">删除方法</font> ### <font face="楷体" id="3.6">删除方法</font>
**remove()** ,**removeFirst(),pop():** 删除头节点 **remove()** ,**removeFirst(),pop():** 删除头节点
``` ```
public E pop() { public E pop() {