Skip to content

Commit 5b8e52f

Browse files
Small content update
1 parent d9b2ac5 commit 5b8e52f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

docs/notes/Java 基础.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ public class Box<T> {
14291429
}
14301430
```
14311431

1432-
- [Java 泛型详解](http://www.importnew.com/24029.html)
1432+
- [Java 泛型详解](https://www.cnblogs.com/Blue-Keroro/p/8875898.html)
14331433
- [10 道 Java 泛型面试题](https://cloud.tencent.com/developer/article/1033693)
14341434

14351435
# 十、注解

docs/notes/Java 并发.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,7 @@ public static void main(String[] args) {
611611
WaitNotifyExample example = new WaitNotifyExample();
612612
executorService.execute(() -> example.after());
613613
executorService.execute(() -> example.before());
614+
executorService.shutdown();
614615
}
615616
```
616617

docs/notes/Linux.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,6 +1075,11 @@ dmtsai tty1 Fri May 29 11:55 - 12:11 (00:15)
10751075

10761076
```html
10771077
$ last -n 5 | awk '{print $1 "\t" $3}'
1078+
dmtsai 192.168.1.100
1079+
dmtsai 192.168.1.100
1080+
dmtsai 192.168.1.100
1081+
dmtsai 192.168.1.100
1082+
dmtsai Fri
10781083
```
10791084

10801085
可以根据字段的某些条件进行匹配,例如匹配字段小于某个值的那一行数据。

0 commit comments

Comments
 (0)