Swing的确是MVC模式的一个优秀例子,它将接口(图形组件)和实现(当组件发生了某个事件之后,你要运行的代码)明明白白地分开来。Swing组件能通报在它身上可以发生什么事件,以及发生了什么事件。所以,如果你对某个事件不感兴趣,比如鼠标从按钮的上方经过,你完全可以不去理会这个事件。用这种方法能非常简洁优雅地解决事件驱动的问题,一旦你理解了其基本概念,你甚至可以去直接使用过去从未看到过的Swing组件。
为了对事件驱动编程进行学习,我们还是从一个简单的HelloWorld开始说起好了,正所谓“麻雀虽小,可五脏俱全”,越是细小的东西反而更能引人思考。不废话,先上代码(^o^
/**/
/
////使用内部匿名类
/
package com.vitamin.UI;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Event;
import java.awt. event .ActionEvent;
import java.awt. event .ActionListener;
import javax.swing. * ;
public class HelloForm extends JFrame
{
private JLabel lbInfo = null;
private JButton btnOK = null;
public HelloForm()
{
super();
}
public HelloForm(String title)
{
super(title);
this.initForm();
}
private void initForm()
{
this.lbInfo = new JLabel();
this.btnOK = new JButton("确定");
this.btnOK.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
lbInfo.setText("Hello,World");
}
});
Container con = this.getContentPane();
con.setLayout(new BorderLayout());
con.add(this.btnOK,BorderLayout.SOUTH);
con.add(this.lbInfo,BorderLayout.NORTH);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(300,300);
this.setVisible(true);
}
/**//**
* @param args
*/
public static void main(String[] args)
{
HelloForm hf = new HelloForm("内部匿名类测试程序");
}
}
////使用内部匿名类
/
package com.vitamin.UI;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Event;
import java.awt. event .ActionEvent;
import java.awt. event .ActionListener;
import javax.swing. * ;
public class HelloForm extends JFrame
{
private JLabel lbInfo = null;
private JButton btnOK = null;
public HelloForm()
{
super();
}
public HelloForm(String title)
{
super(title);
this.initForm();
}
private void initForm()
{
this.lbInfo = new JLabel();
this.btnOK = new JButton("确定");
this.btnOK.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
lbInfo.setText("Hello,World");
}
});
Container con = this.getContentPane();
con.setLayout(new BorderLayout());
con.add(this.btnOK,BorderLayout.SOUTH);
con.add(this.lbInfo,BorderLayout.NORTH);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(300,300);
this.setVisible(true);
}
/**//**
* @param args
*/
public static void main(String[] args)
{
HelloForm hf = new HelloForm("内部匿名类测试程序");
}
}
/**/
///
////使用内部类
//
package com.vitamin.UI;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt. event .ActionEvent;
import java.awt. event .ActionListener;
import javax.swing. * ;
public class HelloForm2 extends JFrame
{
private JLabel lbInfo = null;
private JButton btnOK = null;
public HelloForm2()
{
super();
// TODO Auto-generated constructor stub
}
public HelloForm2(String title)
{
super(title);
this.initForm();
}
private void initForm()
{
this.lbInfo = new JLabel();
this.btnOK = new JButton("确定");
this.btnOK.addActionListener(new buttonListener());
Container con = this.getContentPane();
con.setLayout(new BorderLayout());
con.add(this.btnOK,BorderLayout.SOUTH);
con.add(this.lbInfo,BorderLayout.NORTH);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(300,300);
this.setVisible(true);
}
class buttonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
lbInfo.setText("Hello,World");
}
}
/**//**
* @param args
*/
public static void main(String[] args)
{
HelloForm2 hf = new HelloForm2("内部类测试");
}
}
这两种代码的写法都是可以的,但我觉得内部匿名类在这更合适些。不过话说回来,呵呵,
Andew
被
James
戏称为“函数指针先生”,但依我看
java
和
C#
的事件处理机制还是有些相似的,至于说谁更加优雅,这就很难说了。。////使用内部类
//
package com.vitamin.UI;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt. event .ActionEvent;
import java.awt. event .ActionListener;
import javax.swing. * ;
public class HelloForm2 extends JFrame
{
private JLabel lbInfo = null;
private JButton btnOK = null;
public HelloForm2()
{
super();
// TODO Auto-generated constructor stub
}
public HelloForm2(String title)
{
super(title);
this.initForm();
}
private void initForm()
{
this.lbInfo = new JLabel();
this.btnOK = new JButton("确定");
this.btnOK.addActionListener(new buttonListener());
Container con = this.getContentPane();
con.setLayout(new BorderLayout());
con.add(this.btnOK,BorderLayout.SOUTH);
con.add(this.lbInfo,BorderLayout.NORTH);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(300,300);
this.setVisible(true);
}
class buttonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
lbInfo.setText("Hello,World");
}
}
/**//**
* @param args
*/
public static void main(String[] args)
{
HelloForm2 hf = new HelloForm2("内部类测试");
}
}
此外,Swing的功能非常强大,短短几行代码就能做很多事。但是,有些时候用手写代码创建GUI表单就不那么明智了;首先是太复杂,其次也不值得。Java和Swing的设计者们是想用语言和类库去支持GUI builder工具,然后让你用工具来简化编程。实际上只要知道布局是怎么一回事,以及事件该怎么处理就行了,懂不懂手写代码控制控件的摆放,其实并不重要。你完全可以选一个趁手的工具(毕竟Java的初衷就是想让你提高编程的效率)。