methodtest.java

来自「翁剀JAVA语言那门课程的教案 很多人都看多他的视频教程可惜没有ppt的教案」· 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 + -
显示快捷键?