- //此项目用来跑临时碰到的问题。。
- /* 此程序使用死循环测试多进程的运行。
- package test;
- public class Example {
- public static void main(String[] args) {
- while(true) {
- int a=(int) (Math.random()*100); //获得一个100以内的随机数
- System.out.println("main thread is run "+a);
- try {
- Thread.sleep(3000);
- }catch (InterruptedException e){
- e.printStackTrace();
- }
- }
- }
- }
- */