📄 twothread.java
字号:
class TwoThread implements Runnable {
TwoThread() {
Thread Thread1 = Thread.currentThread();
Thread1.setName("The first main thread");
System.out.println("The running thread:" + Thread1);
Thread Thread2 = new Thread(this,"the second thread");
System.out.println("creat another thread");
Thread2.start();
}
public void run() {
try {
for ( int i = 0; i < 5; i++ ) {
System.out.println("Sleep time for thread :"+i);
Thread.sleep(1000);
}
}
catch (InterruptedException e) {
System.out.println("thread has wrong");
}
}
public static void main(String args[]) {
new TwoThread();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -