auto commit

This commit is contained in:
CyC2018
2019-06-25 22:10:21 +08:00
parent 986f1d28ee
commit b5b15eba94
9 changed files with 44 additions and 15 deletions

View File

@ -229,7 +229,6 @@ main() 属于非守护线程。
public static void main(String[] args) {
Thread thread = new Thread(new MyRunnable());
thread.setDaemon(true);
thread.start();
}
```