Skip to content

Commit 600256b

Browse files
Small content update
1 parent 287b9b8 commit 600256b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

notes/Java 基础.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ public class Box<T> {
14001400
}
14011401
```
14021402

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

14061406
## 十、注解

notes/Java 并发.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,7 @@ public static void main(String[] args) {
613613
WaitNotifyExample example = new WaitNotifyExample();
614614
executorService.execute(() -> example.after());
615615
executorService.execute(() -> example.before());
616+
executorService.shutdown();
616617
}
617618
```
618619

notes/Linux.md

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

10781078
```html
10791079
$ last -n 5 | awk '{print $1 "\t" $3}'
1080+
dmtsai 192.168.1.100
1081+
dmtsai 192.168.1.100
1082+
dmtsai 192.168.1.100
1083+
dmtsai 192.168.1.100
1084+
dmtsai Fri
10801085
```
10811086

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

0 commit comments

Comments
 (0)