int tickets=20;
boolean bool=false; //定义类SellThread的boolean型成员变量
public void run()...{
if(bool)...{ //如果bool=false;则执行同步块
while(true)...{
synchronized(this)...{
if(tickets>0)...{
int tickets=20;
boolean bool=false; //定义类SellThread的boolean型成员变量
public void run()...{
if(bool)...{ //如果bool=false;则执行同步块
while(true)...{
synchronized(this)...{
if(tickets>0)...{