//此項目用來跑臨時碰到的問題。。 /*此程式使用死迴圈測試多進程的運行。 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();
- }
- }
- }
- }
- */