Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 스프링
- 개미수열
- brotli
- 클래스레벨밸리데이션
- kotliln
- 이렇게살아야되나자괴감이
- 리얼월드HTTP
- Spring
- 코드스피츠
- cache-control
- HTTP
- jsr303
- jsr380
- 알게뭐냐
- 워드프레스
- 브로틀리
- 지수반등
- 랜선아미안해
- i18n
- etag
- cross parameter
- 알고리즘
- Kotlin
- 지뢰찾기
- LastModified
Archives
- Today
- Total
취미개발 블로그와 마음수양
카운트 버튼으로 카운터 하는 프로그램 본문
음..이건 카운트 프로그램 : 파워 자바(천인국님, 하상호님 공저) 문제 풀이입니다.
재밌네요 ㅋㅋㅋ
package 챕16이벤트; import java.awt.*; import java.awt.event.*; import javax.swing.*; class MyCounter extends JFrame implements ActionListener { private JLabel label, label1; private JButton button, button1, button2; private int count = 0; public MyCounter() { JPanel panel = new JPanel(); label = new JLabel("Counter"); panel.add(label); label1 = new JLabel("" + count); label1.setFont(new Font("Serif", Font.BOLD | Font.ITALIC, 100)); panel.add(label1); JPanel panel_b = new JPanel(); button = new JButton("카운터 증가"); button1 = new JButton("카운터 감소"); button2 = new JButton("카운터 초기화"); panel_b.add(button); panel_b.add(button1); panel_b.add(button2); panel.add(panel_b); button.addActionListener(this); button1.addActionListener(this); button2.addActionListener(this); add(panel); setSize(300, 200); setTitle("My Counter"); setVisible(true); } @Override public void actionPerformed(ActionEvent event) { if (event.getSource() == button) { count++; label1.setText(count + ""); } else if (event.getSource() == button1) { count--; label1.setText(count + ""); } else { count = 0; label1.setText(count + ""); } } } public class CounterTest { public static void main(String args[]) { new MyCounter(); } }
'Language > java소스' 카테고리의 다른 글
자바 슬롯머신 ( 글씨 대신 이미지로 숫자 변환) (0) | 2014.04.14 |
---|---|
자바 슬롯머신 (0) | 2014.04.14 |
자바 도형 그리기 예제 (0) | 2014.04.14 |
이미지 흩어뜨리기 ( 파워자바) (0) | 2014.04.14 |
인터페이스를 이용하여 가장 키가 큰 녀석을 구하기 (0) | 2014.04.14 |