}
}
}
}
classWorker{
privatebooleanalive=true;
publicbooleanisAlive(){
java中index是什么意思returnalive;
}
publicvoidsetAlive(booleanalive){
this.alive=alive;
}
//⼯作的⽅法
publicvoidwork(intcount)throwsException{
if(count>10){
thrownewException("⽣病");
}else{
System.out.println("正常⼯作");
}
}
}
classDoctor{
publicvoidcure(Workerworker)throwsException{ intt=(int)(Math.random()*10000);
if(t==4512){
worker.setAlive(false);
thrownewException("death");
}else{
worker.setAlive(true);
}
}
}
--------------------------------------------
运⾏时异常:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。