twothread.java
来自「递归子程序法:对应每个非终结符语法单元编一个独立的处理过程(或子程序)。语法分析」· Java 代码 · 共 24 行
JAVA
24 行
package twothread;
/**
* Java语言实验参考程序
* Company 北京师范大学计算机系
* @author 孙一林
* @version 1.0
*/
public class TwoThread {
public static void main(String args[]) {
DelayPrintThread thread1,thread2;
thread1 = new DelayPrintThread(); // 创建2个线程对象
thread2 = new DelayPrintThread();
thread1.start(); // 开始启动2个线程
thread2.start();
try {
Thread.sleep( 10000 ); // 主线程休眠1万毫秒
}
catch(InterruptedException e) {
System.out.println( "thread has wrong" );
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?