File tree Expand file tree Collapse file tree
src/main/java/com/crossoverjie/algorithm Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313### Java 多线程
1414- [ 多线程中的常见问题] ( 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 )
1616- [ 多线程的三大核心] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Threadcore.md )
1717- [ 对锁的一些认知,有哪些锁] ( https://github.com/crossoverJie/Java-Interview/blob/master/MD/Java-lock.md )
1818- [ 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) {
5353
5454 Node pre = head ;
5555 Node cur = head .next ;
56- Node next ;
56+ Node next ;
5757 while (cur != null ){
5858 next = cur .next ;
5959
You can’t perform that action at this time.
0 commit comments