欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

此程序使用死循环测试多进程的运行

程序员文章站 2022-06-28 20:56:23
//此项目用来跑临时碰到的问题。。 /*此程序使用死循环测试多进程的运行。 packagetest; publicclassExample{ publicstaticvoidmain(String[]args){ while(true){ ... ......
  1. //此项目用来跑临时碰到的问题。。  
  2. /*    此程序使用死循环测试多进程的运行。    
  3. package test; 
  4.    
  5. public class example { 
  6.     public static void main(string[] args) { 
  7.         while(true) { 
  8.             int a=(int) (math.random()*100);  //获得一个100以内的随机数 
  9.             system.out.println("main thread is run "+a); 
  10.             try { 
  11.                 thread.sleep(3000); 
  12.             }catch (interruptedexception e){ 
  13.                 e.printstacktrace(); 
  14.             } 
  15.         } 
  16.     } 
  17.    
  18. } 
  19. */