A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 臧盼 中级黑马   /  2012-12-25 19:52  /  1193 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.awt.*;
import java.awt.event.*;
public class TestArithmetic {
public static void main(String[] args) {
MyFrame frm=new MyFrame();//错误在这行
frm.addWindowListener(new Monitor());

}
class MyFrame extends Frame{
public MyFrame(){
this.setTitle("TestCalculate");
this.setBounds(200, 200, 300, 300);
this.setBackground(Color.GRAY);
this.setResizable(false);
this.setVisible(true);
}
}
class Monitor extends WindowAdapter implements ActionListener{
public void windowClosing(WindowEvent e){
((Frame)e.getComponent()).dispose();
System.exit(0);
}
}
}

评分

参与人数 1技术分 +1 收起 理由
刘芮铭 + 1

查看全部评分

3 个回复

倒序浏览
李敬卫 来自手机 中级黑马 2012-12-25 20:18:23
沙发
窗体初始化时要指定窗体名称
回复 使用道具 举报
李敬卫 来自手机 中级黑马 2012-12-25 21:01:49
藤椅
我是手机登录,刚才没看完内容就回答,丢人了,你的那个Monitor类实现了ActionListener接口,但你并没有实现他里面的actionperformed方法,这里也错了吧!但是你说的那个错误的地方我的却没报错,你再调试调试

评分

参与人数 1技术分 +1 收起 理由
刘芮铭 + 1 乐于助人 也可以得分的

查看全部评分

回复 使用道具 举报
class Monitor extends WindowAdapter implements ActionListener {
        public void windowClosing(WindowEvent e) {
                ((Frame) e.getComponent()).dispose();
                System.exit(0);
        }

        @Override
        public void actionPerformed(ActionEvent e) {
                // TODO Auto-generated method stub
               
        }
}

继承了接口,却没实现,肯定做啦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马