本文共 977 字,大约阅读时间需要 3 分钟。
public class TestThread4 implements Runnable{ //票数 private int ticket = 10; @Override public void run() { while (true){ if (ticket <= 0){ break; } //模拟延时 try { Thread.sleep(200); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName()+"-->拿到了第" + ticket-- +"张票"); } }}
public static void main(String[] args) { TestThread4 testThread4 = new TestThread4(); new Thread(testThread4,"小明").start(); new Thread(testThread4,"老师").start(); new Thread(testThread4,"黄牛党").start(); }
转载地址:http://jieq.baihongyu.com/