반응형 전체 글100 [Java] Thread를 이용한 타이머 + GUI 실행영상 바가 줄어드는 타이머와 숫자가 줄어드는 두 가지의 타이머입니다. class TimerBar extends JLabel implements Runnable { int width = 450, height = 50; int x = 10, y = 50; Color color = new Color(255, 0, 0); int second; public TimerBar(int second) { setBackground(color); setOpaque(true); setBounds(x, y, width, height); this.second = second; } @Override public void run() { while (true) { try { Thread.sleep(1000 / (width / se.. 2021. 4. 1. 이전 1 ··· 9 10 11 12 다음 728x90 반응형