| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 724 人关注过本帖
标题:[求助]简单登录器,有错误,如何改正?
只看楼主 加入收藏
pinglideyu
Rank: 3Rank: 3
来 自:武汉工程大学
等 级:论坛游侠
威 望:1
帖 子:735
专家分:140
注 册:2007-1-7
结帖率:100%
收藏
 问题点数:0 回复次数:7 
[求助]简单登录器,有错误,如何改正?

我的程序如下:
import java.awt.*;
import java.awt.event.*;
//import javax.swing.*;
public class KK extends Frame implements ActionListener,WindowListener
{

public KK() {
super("QQ用户登录");
this.setSize(250,200);
this.setBackground(new Color(210,250,250));
this.setLocation(300,240);
this.setLayout(new FlowLayout());
this.add(new Label("QQ帐号"));
this.add(new TextField(20));
this.add(new Label("QQ密码"));
this.add(new TextField(20));
this.add(new Button("查杀木马"));
this.add(new Button("设置"));
this.add(new Button("登录"));
this.addWindowListener(new WinClose());
this.setVisible(true);

}
public static void main (String[] args) {
new KK();
}


}

class WinClose implements WindowListener
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
public void windowOpened(WindowEvent e){}
}

搜索更多相关主题的帖子: import awt new java 
2007-10-24 10:41
无缘今生
Rank: 2
等 级:新手上路
威 望:3
帖 子:523
专家分:7
注 册:2007-6-25
收藏
得分:0 
下面是编译的错误信息,具体错误请自己改正:
KK.java:4: KK 不是抽象的,并且未覆盖 java.awt.event.ActionListener 中的抽象方法
actionPerformed(java.awt.event.ActionEvent)
public class KK extends Frame implements ActionListener,WindowListener
^
KK.java:31: WinClose 不是抽象的,并且未覆盖 java.awt.event.WindowListener 中的抽
象方法 windowDeactivated(java.awt.event.WindowEvent)
class WinClose implements WindowListener


时不再来!!!
2007-10-24 11:00
doughty
Rank: 1
等 级:新手上路
帖 子:372
专家分:0
注 册:2007-10-18
收藏
得分:0 
你的两个接口里是不是写了个抽象方法呀.,你在构造函数里直接这样写不对吧....你的父类是什么,,...
2007-10-24 11:12
pinglideyu
Rank: 3Rank: 3
来 自:武汉工程大学
等 级:论坛游侠
威 望:1
帖 子:735
专家分:140
注 册:2007-1-7
收藏
得分:0 

哎呀,大哥。我也知道这些错误信息,可就是不会呀。刚学JAVA,还请多多指点。


~~我的明天我知道~~
2007-10-24 11:13
无缘今生
Rank: 2
等 级:新手上路
威 望:3
帖 子:523
专家分:7
注 册:2007-6-25
收藏
得分:0 
你写的类KK是应该实现后面两个接口里面的所有的抽象方法的,可是你把抽象方法windowClosing、windowOpened的实现放到了另一个类WinClose里面----这样做是不对的。

一个类,要实现一个接口,就必需要实现该接口的所有的方法,即使你只使用它里面的一个方法。在这种情况下你可以用adapter ,这样会方便很多。

建议你把基础的理论知识看完了再动手写程序。

时不再来!!!
2007-10-24 11:20
沉沦过迁
Rank: 2
来 自:广西百色
等 级:论坛游民
帖 子:2297
专家分:10
注 册:2007-5-8
收藏
得分:0 
接口ActionListener中的抽象方法好象没有重写吧
public void actionPerformed (ActionEvent e){}

也许我没有明天,但是我拥有现在
2007-10-24 11:23
pinglideyu
Rank: 3Rank: 3
来 自:武汉工程大学
等 级:论坛游侠
威 望:1
帖 子:735
专家分:140
注 册:2007-1-7
收藏
得分:0 

喔。。。谢过了啦,我去看看了。


~~我的明天我知道~~
2007-10-24 11:24
无缘今生
Rank: 2
等 级:新手上路
威 望:3
帖 子:523
专家分:7
注 册:2007-6-25
收藏
得分:0 

正确的代码:
import java.awt.*;
import java.awt.event.*;
//import javax.swing.*;
public class KK extends Frame implements ActionListener,WindowListener
{

public KK() {
super("QQ用户登录");
this.setSize(250,200);
this.setBackground(new Color(210,250,250));
this.setLocation(300,240);
this.setLayout(new FlowLayout());
this.add(new Label("QQ帐号"));
this.add(new TextField(20));
this.add(new Label("QQ密码"));
this.add(new TextField(20));
this.add(new Button("查杀木马"));
this.add(new Button("设置"));
this.add(new Button("登录"));
this.addWindowListener(this);
this.setVisible(true);

}

public void windowClosing(WindowEvent e)
{
System.exit(0);
}
public void windowOpened(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowClosed(WindowEvent e){}

public void actionPerformed(ActionEvent e)
{
//具体实现你自己加在这里。
}

public static void main (String[] args) {
new KK();
}
}


时不再来!!!
2007-10-24 11:27
快速回复:[求助]简单登录器,有错误,如何改正?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032921 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved