public synchronized void run()...{
while(!bStop)...{
try...{
wait();
}catch(InterruptedException e)...{ //当中断线程时会抛出一个InterruptedException异常,必须对其进行捕捉处理
if(bStop)...{ //如果bStop为true时,即mt所在线程已经被中断
return; //返回
}
}catch(Exception e)...{
e.printStackTrace();

