methodtest.java
来自「讲解在java平台上用AWT编写与图形有关的小程序」· Java 代码 · 共 40 行
JAVA
40 行
public class MethodTest {
public static void main(String[] args) {
FirstThread first = new FirstThread();
SecondThread second = new SecondThread();
first.start();
second.start();
try {
System.out.println("Waiting for first thread to finish...");
first.join();
System.out.println("It's a long wait!");
System.out.println("Waking up second thread..");
second.resume();
System.out.println("Waiting for second thread to finish..");
second.join();
} catch (InterruptedException e) {
}
System.out.println("I'm ready to finish too.");
}
}
class FirstThread extends Thread {
public void run() {
try {
System.out.println("First thread starts running.");
sleep(10000);
System.out.println("First thread finishes running.");
} catch (InterruptedException e) {
}
}
}
class SecondThread extends Thread {
public void run() {
System.out.println("Second thread starts running.");
System.out.println("Second thread suspend itself.");
suspend();
System.out.println("Second thread runs again and finishes.");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?