此程序使用死循环测试多进程的运行
程序员文章站
2022-04-08 19:08:44
//此项目用来跑临时碰到的问题。。 /*此程序使用死循环测试多进程的运行。 packagetest; publicclassExample{ publicstaticvoidmain(String[]args){ while(true){ ... ......
- //此项目用来跑临时碰到的问题。。
- /* 此程序使用死循环测试多进程的运行。
- 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();
- }
- }
- }
- }
- */
上一篇: 答案肯定是