返回列表 發帖

[隨堂測驗] 點擊計數器

本帖最後由 tonyh 於 2021-9-3 20:26 編輯



  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;
  3. import javax.swing.JButton;
  4. import javax.swing.JFrame;
  5. import javax.swing.JLabel;

  6. public class Ch83 implements ActionListener{

  7.         JFrame fm;
  8.         JLabel lb;
  9.         JButton btn1, btn2;
  10.         int n=0;
  11.        
  12.         Ch83()
  13.         {
  14.                 lb=new JLabel("0");
  15.                 lb.setBounds(25, 20, 80, 15);
  16.                
  17.                 btn1=new JButton("點擊");
  18.                 btn1.setBounds(60, 10, 80, 35);
  19.                 btn1.addActionListener(this);
  20.                 btn2=new JButton("歸零");
  21.                 btn2.setBounds(150, 10, 80, 35);
  22.                 btn2.addActionListener(this);
  23.                
  24.                 fm=new JFrame("點擊計數器");
  25.                 fm.setBounds(100, 100, 245, 80);
  26.                 fm.setVisible(true);
  27.                 fm.setResizable(false);
  28.                 fm.setLayout(null);
  29.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  30.                 fm.add(lb);
  31.                 fm.add(btn1);
  32.                 fm.add(btn2);
  33.         }
  34.        
  35.         public static void main(String[] args) {
  36.                 new Ch83();   //匿名
  37.         }

  38.         @Override
  39.         public void actionPerformed(ActionEvent e) {
  40.                 if(e.getSource()==btn1)
  41.                 {
  42.                         n++;
  43.                         lb.setText(n+"");
  44.                 }
  45.                 if(e.getSource()==btn2)
  46.                 {
  47.                         n=0;
  48.                         lb.setText("0");
  49.                 }
  50.         }
  51. }
複製代碼
  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;
  3. import javax.swing.JButton;
  4. import javax.swing.JFrame;
  5. import javax.swing.JLabel;

  6. public class Ch83{

  7.         JFrame fm;
  8.         JLabel lb;
  9.         JButton btn1, btn2;
  10.         int n=0;

  11.         Ch83()
  12.         {
  13.                 lb=new JLabel("0");
  14.                 lb.setBounds(25, 20, 80, 15);

  15.                 btn1=new JButton("點擊");
  16.                 btn1.setBounds(60, 10, 80, 35);
  17.                 btn1.addActionListener(new MyListener());
  18.                 btn2=new JButton("歸零");
  19.                 btn2.setBounds(150, 10, 80, 35);
  20.                 btn2.addActionListener(new ActionListener() {

  21.                         @Override
  22.                         public void actionPerformed(ActionEvent e) {
  23.                                 if(e.getSource()==btn2)
  24.                                 {
  25.                                         n=0;
  26.                                         lb.setText("0");
  27.                                 }
  28.                         }
  29.                 });

  30.                 fm=new JFrame("點擊計數器");
  31.                 fm.setBounds(100, 100, 245, 80);
  32.                 fm.setVisible(true);
  33.                 fm.setResizable(false);
  34.                 fm.setLayout(null);
  35.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  36.                 fm.add(lb);
  37.                 fm.add(btn1);
  38.                 fm.add(btn2);
  39.         }

  40.         class MyListener implements ActionListener
  41.         {
  42.                 @Override
  43.                 public void actionPerformed(ActionEvent e) {
  44.                         if(e.getSource()==btn1)
  45.                         {
  46.                                 n++;
  47.                                 lb.setText(n+"");
  48.                         }
  49.                 }
  50.         }

  51.         public static void main(String[] args) {
  52.                 new Ch83();   //匿名
  53.         }
  54. }
複製代碼

此帖僅作者可見
hahahahahahahaha

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
李宇澤Oscar

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表