⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threadtest.java

📁 java编程开发技巧与实例的编译测试通过的所有例程
💻 JAVA
字号:

public class ThreadTest
{
	public static void main(String[] args)
	{
		System.out.println("Starting ThreadTest");
		CountingThread thread1 = new CountingThread();
		thread1.start();
		CountingThread thread2 = new CountingThread();
		thread2.start();
		CountingThread thread3 = new CountingThread();
		thread3.start();
		System.out.println("ThreadTest is done.");
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -