多线程Runnable类创建多线程
生活随笔
收集整理的這篇文章主要介紹了
多线程Runnable类创建多线程
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package com.ajax;
//多線程Runnable類創建多線程
public class Example01 {public static void main(String [] args){TicketWindow tw=new TicketWindow();new Thread(tw,"窗口1").start();new Thread(tw,"窗口2").start();new Thread(tw,"窗口3").start();new Thread(tw,"窗口4").start();
}
}
class TicketWindow implements Runnable{private int tickets=10;public void run(){while(true){if(tickets>0){Thread th=Thread.currentThread();//獲取當前線程String th_name=th.getName();System.out.println(th_name+"正在發售第"+tickets--+"張票");}}}
}
//結果解釋:四個窗口共享資源,發送10張票,沒有重復發售
總結
以上是生活随笔為你收集整理的多线程Runnable类创建多线程的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++ Sets MultiSets
- 下一篇: html 中 标签里面的id 和 nam