资源简介
多线程同步解决卖票问题
代码片段和文件信息
class SellThread implements Runnable{
int tickets = 100;
public synchronized void sell(){
if(tickets > 0){
/*
try{
Thread.sleep(10);
}catch(Exception e){
e.printStackTrace();
}
*/
System.out.println(Thread.currentThread().getName()+“ has selled tickets:“+tickets);
tickets--;
评论
共有 条评论