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

📄 threaddemo3.java

📁 JAVA程序设计课程中各章节的程序实例。
💻 JAVA
字号:
/**
*Threads implements Runnable interface
*2004.11.2. xhcprince
*/
class newThread implements Runnable
{
	Thread t;

	newThread()
	{
		t = new Thread(this,"Demo thread"); //如果不要this,则仅执行main thread!!!
		System.out.println("Child thread " + t); //this 代表当前进程,即子进程
		t.start();				//这里的Thread原形是这样的-public Thread(Runnable target, String name)
	}

	public void run()
	{
		try
		{
			for(int i=5; i>0; --i)
			{
				System.out.println("Child thread:" + i);
				Thread.sleep(1000);
			}
		}
		catch(InterruptedException e)
		{
			System.out.println("Child thread interrupted");
		}

		System.out.println("Child thread existing");
	}
}

class threadDemo3
{
	public static void main(String args[])
	{
		new newThread();

		try
		{
			for(int i=5; i>0; --i)
			{
				System.out.println("Main thread:" + i);
				Thread.sleep(1000);
			}
		}
		catch(InterruptedException e)
		{
			System.out.println("Main thread interrupted");
		}

		System.out.println("Main thread existing");
	}
}

⌨️ 快捷键说明

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