File tree 2 files changed +2
-2
lines changed
src/main/java/com/crossoverjie/algorithm
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
13
13
### Java 多线程
14
14
- [ 多线程中的常见问题] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Thread-common-problem.md )
15
- - [ Synchronize 关键字原理] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Synchronize.md )
15
+ - [ synchronize 关键字原理] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Synchronize.md )
16
16
- [ 多线程的三大核心] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Threadcore.md )
17
17
- [ 对锁的一些认知,有哪些锁] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Java-lock.md )
18
18
- [ ReentrantLock 实现原理 ] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/ReentrantLock.md )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public void reverseNode(Node head) {
53
53
54
54
Node pre = head ;
55
55
Node cur = head .next ;
56
- Node next ;
56
+ Node next ;
57
57
while (cur != null ){
58
58
next = cur .next ;
59
59
You can’t perform that action at this time.
0 commit comments