Stopwatch unpause doesn't work
问题 I'm trying to create a stopwatch. The start and pause buttons works fine but the unpause button doesn't work properly. timer is my JLabel in which I want to ilustrate my stopwatch (it references timer from the JFrame). I can't post a MCVE because it's too much code. Here is my Stopwatch class: public class Stopwatch extends Thread { private boolean finishedFlag = false; private boolean pauseFlag = false; private boolean sortFlag = false; private long summedTime = 0; private JLabel timer;