public class MyJFrame extends JFrame implements ActionListener{
JButton btn_Red=new JButton("Red");
Container ct=getContentPane();
public MyJFrame(){
btn.addActionListener(this); //窗体自己继承监听器,提供监听服务
ct.add(btn);
}
public void actionPerformed(ActionEvent e{
ct.setBackground(Color.RED);
}
}
***********************************************************
public class MyJFrame extends JFrame {
JButton btn_Red=new JButton("Red");
Container ct=getContentPane();
public MyJFrame(){
btn.addActionListener(new Spy());
ct.add(btn);
}
class Spy implements ActionListener{ //内部类实现监听接口,提供监听服务
public void actionPerformed(ActionEvent e{
ct.setBackground(Color.RED);
}
}
以上俩例子应该很明显了吧
[此贴子已经被作者于2007-7-29 18:57:37编辑过]