Skip to content

Commit 7bd1b35

Browse files
committed
💬 update LinkedHashMap
1 parent adc99f0 commit 7bd1b35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MD/collection/LinkedHashMap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
就是利用了头节点和其余的各个节点之间通过 `Entry` 中的 `after``before` 指针进行关联。
7676

7777

78-
其中还有一个 `accessOrder` 成员变量,默认是 `false`便是默认按照插入顺序排序,为 `true` 时按照访问顺序排序,也可以调用:
78+
其中还有一个 `accessOrder` 成员变量,默认是 `false`默认按照插入顺序排序,为 `true` 时按照访问顺序排序,也可以调用:
7979

8080
```
8181
public LinkedHashMap(int initialCapacity,

0 commit comments

Comments
 (0)