我在我的代码中使用了三个线程。当我按下“停止”按钮时,它应该停止并且“开始”按钮应该恢复它们。这是我的代码:
private void jButton_stopActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
boolean result = value;
if(result){
t.stop();
timer.stop();
timer2.stop();
value = false;
jButton_stop.setText("Start");
}
else{
t.resume();
timer.resume();
timer2.resume();
value = true;
jButton_stop.setText("Stop");
}
但是当我点击“停止”按钮时,所有线程都完全停止了,但是当我按下“开始”按钮时,线程没有恢复。为什么?请帮我。