Java:Runnable

1、具体实现
  1. 创建线程辅助类 MyRunnable 实现 Runnable 接口。
  2. 创建线程辅助对象:MyRunnable runnable = new MyRunnable()。
  3. 创建线程对象:Thread thread1 = new Thread(runnable, “线程一”);。
  4. 调用线程对象的 start() 方法。
public class RunnableDemo {

    public static void main(String[] args) {

        MyRunnable runnable = new MyRunnable();
        Thread thread1 = new Thread(runnable, "线程一");
        Thread thread2 = new Thread(runnable, "线程二");

        thread1.start();
        thread2.start();
    }

    static class MyRunnable implements Runnable {

        // 100 张票
        private int ticket = 100;

        @Override
        public void run() {

            while (ticket > 0) {
                ticket--;
                System.out.println(Thread.currentThread() + "卖掉了1张票,剩余票数为:" + ticket);
            }

        }
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章