कार्यक्रम एक JLabel . का उपयोग करता है गिनती लेबल रखने के लिए, एक JTextField संख्या रखने के लिए घटक गिनती , जेबटन बनाने के लिए घटक जोड़ें , निकालें और रीसेट करें बटन। जब हम ऐड बटन पर क्लिक करते हैं, तो JTextField में गिनती बढ़ी हुई . हो जाएगी द्वारा '1' और हटाएं बटन पर क्लिक करने से गिनती '1' से कम हो जाएगी। यदि हम रीसेट बटन पर क्लिक करते हैं, तो यह रीसेट होगा '0' . की गिनती ।
उदाहरण
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class CounterTest extends JFrame implements ActionListener { private JLabel label; private JTextField text; private JButton addBtn, removeBtn, resetBtn; private int count; public CounterTest() { setTitle("Counter Test"); setLayout(new FlowLayout()); count = 0; label = new JLabel("Count:"); text = new JTextField("0", 4); addBtn = new JButton("Add"); removeBtn = new JButton("Remove"); resetBtn = new JButton("Reset"); addBtn.addActionListener(this); removeBtn.addActionListener(this); resetBtn.addActionListener(this); add(label); add(text); add(addBtn); add(removeBtn); add(resetBtn); setSize(375, 250); setLocationRelativeTo(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); } public void actionPerformed(ActionEvent ae) { if (ae.getSource() == addBtn) { count++; // increment the coiunt by 1 text.setText(String.valueOf(count)); repaint(); } else if (ae.getSource() == removeBtn) { count--; // decrement the count by 1 text.setText(String.valueOf(count)); repaint(); } else if (ae.getSource() == resetBtn) { count = 0; // reset the count to 0 text.setText(String.valueOf(count)); repaint(); } } public static void main(String[] args) { new CounterTest(); } }
आउटपुट