賣票案例---三種方式保持線程安全

普通的賣票系統 線程類每10毫秒賣一張票,有三個人同時買 public class MyRunnable1 implements Runnable{ private int t=1;//多線程共享的資源 @Override public void run() { while(true){ if (t <=100) {
相關文章
相關標籤/搜索