java中用内部类实现监听接口例程

package xiaobao;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
 public class xin extends JFrame
 {
  private JButton button =new JButton("1");
  public xin(String title){
   super(title);
   button.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent evt) {
    int count=Integer.parseInt(button.getText());
   button.setText(new Integer(++count).toString());
   }
  });
  Container c=getContentPane();
  c.add(button);
  setSize(100,100);
  setVisible(true);
 }
 public static void main (String args [])
 {
  new xin("用内部类实现监听接口例程");
 }
 }

你可能感兴趣的:(java,内部类,休闲, ,监听接口例程)