返回列表 發帖

事件處理與傾聽者

本帖最後由 tonyh 於 2016-1-30 17:47 編輯

視窗作業系統都是採取圖形使用者介面,其程式執行流程是採用事件驅動(Event Driver)方式運作。例如程式開始執行後,等待著事件的發生,如移動滑鼠到按鈕上點按一下,就可能會執行特定方法。

Java對於事件處理方式是採用「委派事件模式」,如下圖所示:



Java將產生事件的物件稱為「事件來源」,而接收事件的物件稱為「事件傾聽者」,處理事件的方法稱為「事件處理方法」。

以本範例為例,事件來源有 tf1、btn1、btn2 三個物件,這三個物件必須分別與事件傾聽者連結在一起(即為來源物件註冊傾聽者),當事件產生時,會將來源物件以傳遞參數的方式交給事件處理方法運作。

事件處理的傾聽者介面 ActionListener 由 java.awt.event 套件所提供,使用時要先匯入。

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. import javax.swing.JButton;
  5. import java.awt.event.ActionListener;
  6. import java.awt.event.ActionEvent;
  7. public class Ch82 implements ActionListener
  8. {
  9.        
  10.         private JFrame fm;
  11.         private JLabel lb1, lb2;
  12.         private JTextField tf1, tf2;
  13.         private JButton btn1, btn2;
  14.        
  15.         Ch82()
  16.         {
  17.                 lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  18.                 lb1.setBounds(0, 10, 215, 30);
  19.                 lb2=new JLabel("輸入坪數:");
  20.                 lb2.setBounds(10, 40, 60, 40);
  21.                
  22.                 tf1=new JTextField();
  23.                 tf1.setBounds(70, 45, 134, 30);
  24.                 tf1.addActionListener(this);
  25.                 tf2=new JTextField();
  26.                 tf2.setBounds(10, 85, 195, 40);
  27.                 tf2.setEditable(false);
  28.                
  29.                 btn1=new JButton("確定");
  30.                 btn1.setBounds(10, 135, 92, 25);
  31.                 btn1.addActionListener(this);
  32.                 btn2=new JButton("清除");
  33.                 btn2.setBounds(112, 135, 92, 25);
  34.                 btn2.addActionListener(this);
  35.                
  36.                 fm=new JFrame("土地面積計算");
  37.                 fm.setBounds(100, 100, 220, 200);
  38.                 fm.setVisible(true);
  39.                 fm.setResizable(false);
  40.                 fm.setLayout(null);
  41.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  42.                 fm.add(lb1);
  43.                 fm.add(lb2);
  44.                 fm.add(tf1);
  45.                 fm.add(tf2);
  46.                 fm.add(btn1);
  47.                 fm.add(btn2);
  48.         }
  49.        
  50.         public void actionPerformed(ActionEvent e)
  51.         {
  52.                 if(e.getSource()==tf1 || e.getSource()==btn1)
  53.                 {
  54.                         double area=Double.parseDouble(tf1.getText())*3.3058;
  55.                         String areaStr=String.valueOf(area);
  56.                         //String areaStr=Double.toString(area);
  57.                         tf2.setText("面積為: "+areaStr+" 平方公尺");
  58.                 }       
  59.                 if(e.getSource()==btn2)
  60.                 {
  61.                         tf1.setText("");
  62.                         tf2.setText("");
  63.                 }
  64.         }

  65.         public static void main(String[] args) {
  66.                 Ch82 app=new Ch82();
  67.         }

  68. }
複製代碼

  1. import javax.swing.*;
  2. import java.awt.event.ActionListener;
  3. import java.awt.event.ActionEvent;
  4. public class Ch80 implements ActionListener{
  5.         private JFrame fm1;
  6.         private JLabel lb1, lb2;
  7.         private JTextField tf3, tf2;
  8.         private JButton bt1, bt2;
  9.         Ch80(){
  10.                 fm1=new JFrame("土地面積運算");
  11.         lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  12.         lb2=new JLabel("輸入坪數:");
  13.         tf3=new JTextField();
  14.         tf2=new JTextField();
  15.         bt1=new JButton("確定");
  16.         bt2=new JButton("清除");
  17.         
  18.         bt1.setBounds(10,135,93,25);
  19.         bt1.addActionListener(this);
  20.         bt2.setBounds(113,135,93,25);
  21.         bt2.addActionListener(this);
  22.         
  23.         tf2.setBounds(70, 50, 135, 30);
  24.         tf2.addActionListener(this);
  25.         tf3.setBounds(10, 85, 194, 40);
  26.         tf3.setEditable(false);
  27.         
  28.         lb1.setBounds(10, 10, 195, 30);
  29.         lb2.setBounds(10, 50, 55, 30);
  30.         
  31.         fm1.setBounds(100, 100, 221, 200);
  32.         fm1.setVisible(true);
  33.         fm1.setResizable(false);
  34.         fm1.setLayout(null);
  35.         fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  36.         fm1.add(lb1);
  37.         fm1.add(lb2);
  38.         fm1.add(bt1);
  39.         fm1.add(bt2);
  40.         fm1.add(tf2);
  41.         fm1.add(tf3);
  42.         }
  43.        
  44.         public void actionPerformed(ActionEvent e){
  45.                 if(e.getSource()==tf2 || e.getSource()==bt1){
  46.                         double area=Double.parseDouble(tf2.getText())*3.3058;
  47.                         tf3.setText("面積為: "+area+" 平方公尺");
  48.                 }
  49.                 if(e.getSource()==bt2){
  50.                         tf2.setText("");
  51.                         tf3.setText("");
  52.                 }
  53.         }
  54.         public static void main(String[] args) {
  55.                 Ch80 app=new Ch80();
  56.         }
  57. }
複製代碼
كخخخخخخخخخخخخخ

TOP

  1. package ch6666;

  2. import javax.swing.JFrame;
  3. import javax.swing.JLabel;
  4. import javax.swing.JTextField;
  5. import javax.swing.JButton;
  6. import java.awt.event.ActionListener;
  7. import java.awt.event.ActionEvent;
  8. public class ch6666 implements ActionListener
  9. {
  10.         
  11.         private JFrame fm;
  12.         private JLabel lb1, lb2;
  13.         private JTextField tf1, tf2;
  14.         private JButton btn1, btn2;
  15.         
  16.         ch6666()
  17.         {
  18.                 lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  19.                 lb1.setBounds(0, 10, 215, 30);
  20.                 lb2=new JLabel("輸入坪數:");
  21.                 lb2.setBounds(10, 40, 60, 40);
  22.                
  23.                 tf1=new JTextField();
  24.                 tf1.setBounds(70, 45, 134, 30);
  25.                 tf2=new JTextField();
  26.                 tf2.setBounds(10, 85, 195, 40);
  27.                 tf2.setEditable(false);
  28.                 tf1.addActionListener(this);
  29.                 btn1.addActionListener(this);
  30.                 btn2.addActionListener(this);
  31.                 btn1=new JButton("確定");
  32.                 btn1.setBounds(10, 135, 92, 25);
  33.                 btn2=new JButton("清除");
  34.                 btn2.setBounds(112, 135, 92, 25);
  35.                
  36.                 fm=new JFrame("土地面積計算");
  37.                 fm.setBounds(100, 100, 220, 200);
  38.                 fm.setVisible(true);
  39.                 fm.setResizable(false);
  40.                 fm.setLayout(null);
  41.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  42.                 fm.add(lb1);
  43.                 fm.add(lb2);
  44.                 fm.add(tf1);
  45.                 fm.add(tf2);
  46.                 fm.add(btn1);
  47.                 fm.add(btn2);
  48.         }
  49.         public void actionPerformed(ActionEvent e)
  50.         {
  51.                 if(e.getSource()==tf1 || e.getSource() == btn1)
  52.                 {
  53.                         double area=Double.parseDouble(tf1.getText())*3.3058;
  54.                         String areaStr=String.valueOf(area);
  55.                         tf2.setText("面積為: "+areaStr+" 平方公尺");
  56.                 }
  57.                 if(e.getSource()==btn2)
  58.                 {
  59.                         tf1.setText("");
  60.                         tf2.setText("");
  61. ;               }
  62.         }
  63.         public static void main(String[] args)
  64.         {
  65.                 ch6666 app=new ch6666();
  66.         }

  67. }
複製代碼

TOP

  1. import javax.swing.*;
  2. import java.awt.event.*;
  3. public class Ch82 implements ActionListener
  4. {
  5.     JFrame f;
  6.     JButton clear,ok;
  7.     JLabel l1,l2;
  8.     JTextField in,out;
  9.     Ch82()
  10.     {
  11.         f=new JFrame("A\u05a4\u0201");
  12.         f.setVisible(true);
  13.         f.setBounds(100,100,300,300);
  14.         f.setLayout(null);
  15.         f.setResizable(false);
  16.         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.         /***********************************************/
  18.         l1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  19.         l1.setBounds(0,0,294,30);
  20.         /***********************************************/
  21.         l2=new JLabel("輸入坪數:");
  22.         l2.setBounds(10,40,90,30);
  23.         /***********************************************/
  24.         in=new JTextField();
  25.         in.setBounds(80,40,200,30);
  26.         in.addActionListener(this);
  27.         
  28.         out=new JTextField();
  29.         out.setBounds(10,80,280,60);
  30.         out.setEditable(false);
  31.         /***********************************************/
  32.         ok=new JButton("確定");
  33.         ok.setBounds(10,150,100,30);
  34.         ok.addActionListener(this);

  35.         clear=new JButton("清除");
  36.         clear.setBounds(190,150,100,30);
  37.         clear.addActionListener(this);
  38.         /***********************************************/
  39.         f.add(l1);
  40.         f.add(l2);
  41.         f.add(in);
  42.         f.add(out);
  43.         f.add(ok);
  44.         f.add(clear);
  45.     }
  46.     public static void main(String args[])
  47.     {
  48.         new Ch82();
  49.     }
  50.     public void actionPerformed(ActionEvent e)
  51.     {

  52.         if(e.getSource()==ok||e.getSource()==in)
  53.         {
  54.             double n=Double.parseDouble(in.getText())*3.3058;
  55.             out.setText("面積為:"+n+"平方公尺");
  56.         }
  57.         else
  58.         {
  59.             in.setText("");
  60.             out.setText("");
  61.         }
  62.     }
  63. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. import javax.swing.JButton;

  5. import java.awt.event.ActionListener;
  6. import java.awt.event.ActionEvent;
  7. public class Ch81 implements ActionListener{
  8.    
  9.     private JFrame fm;
  10.     private JLabel lb1,lb2;
  11.     private JTextField tf1,tf2;
  12.     private JButton btn1,btn2;
  13.    
  14.     Ch81()
  15.     {
  16.         fm=new JFrame("土地面積換算");
  17.         fm.setBounds(100, 100, 220, 200);
  18.         fm.setVisible(true);
  19.         fm.setResizable(false);
  20.         fm.setLayout(null);
  21.         fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.         
  23.         lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  24.         lb2=new JLabel("輸入坪數:");
  25.         lb1.setBounds(5,15,200,20);
  26.         lb2.setBounds(10,45,70,20);
  27.         
  28.         tf1=new JTextField();
  29.         tf2=new JTextField();
  30.         tf1.setBounds(70,38,135,30);
  31.         tf2.setBounds(10,80,195,45);
  32.         tf2.setEditable(false);
  33.         tf1.addActionListener(this);
  34.         
  35.         btn1=new JButton("確定");
  36.         btn2=new JButton("清除");   
  37.         btn1.setBounds(10,140,92,25);
  38.         btn2.setBounds(111,140,92,25);
  39.         btn1.addActionListener(this);
  40.         btn2.addActionListener(this);
  41.         
  42.         fm.add(lb1);
  43.         fm.add(lb2);
  44.         fm.add(tf1);
  45.         fm.add(tf2);
  46.         fm.add(btn1);
  47.         fm.add(btn2);                             
  48.     }
  49.     public void actionPerformed(ActionEvent e)
  50.     {
  51.             if(e.getSource()==tf1 || e.getSource()==btn1)
  52.             {
  53.                     double area=Double.parseDouble(tf1.getText())*3.3058;
  54.                     tf2.setText("面積為"+area+"平方公尺");
  55.             }
  56.             if(e.getSource()==btn2)
  57.             {
  58.                     tf1.setText("");
  59.                     tf2.setText("");
  60.             }
  61.         }
  62.         public static void main(String[] args) {
  63.             Ch81 app=new Ch81();        

  64.         }

  65. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. import javax.swing.JButton;
  5. import java.awt.event.ActionListener;
  6. import java.awt.event.ActionEvent;
  7. public class Ch82 implements ActionListener
  8. {
  9.         
  10.         private JFrame fm;
  11.         private JLabel lb1, lb2;
  12.         private JTextField tf1, tf2;
  13.         private JButton btn1, btn2;
  14.         
  15.         Ch82()
  16.         {
  17.                 lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  18.                 lb1.setBounds(0, 10, 215, 30);
  19.                 lb2=new JLabel("輸入坪數:");
  20.                 lb2.setBounds(10, 40, 60, 40);
  21.                
  22.                 tf1=new JTextField();
  23.                 tf1.setBounds(70, 45, 134, 30);
  24.                 tf1.addActionListener(this);
  25.                 tf2=new JTextField();
  26.                 tf2.setBounds(10, 85, 195, 40);
  27.                 tf2.setEditable(false);
  28.                
  29.                 btn1=new JButton("確定");
  30.                 btn1.setBounds(10, 135, 92, 25);
  31.                 btn1.addActionListener(this);
  32.                 btn2=new JButton("清除");
  33.                 btn2.setBounds(112, 135, 92, 25);
  34.                 btn2.addActionListener(this);
  35.                
  36.                 fm=new JFrame("土地面積計算");
  37.                 fm.setBounds(100, 100, 220, 200);
  38.                 fm.setVisible(true);
  39.                 fm.setResizable(false);
  40.                 fm.setLayout(null);
  41.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  42.                 fm.add(lb1);
  43.                 fm.add(lb2);
  44.                 fm.add(tf1);
  45.                 fm.add(tf2);
  46.                 fm.add(btn1);
  47.                 fm.add(btn2);
  48.         }
  49.         
  50.         public void actionPerformed(ActionEvent e)
  51.         {
  52.                 if(e.getSource()==tf1 || e.getSource()==btn1)
  53.                 {
  54.                         double area=Double.parseDouble(tf1.getText())*3.3058;
  55.                         String areaStr=String.valueOf(area);
  56.                         //String areaStr=Double.toString(area);
  57.                         tf2.setText("面積為: "+areaStr+" 平方公尺");
  58.                 }        
  59.                 if(e.getSource()==btn2)
  60.                 {
  61.                         tf1.setText("");
  62.                         tf2.setText("");
  63.                 }
  64.         }

  65.         public static void main(String[] args) {
  66.                 Ch82 app=new Ch82();
  67.         }

  68. }
複製代碼

TOP

返回列表