一个JAVA窗口事件的问题
importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;publicclassExample9_16{pu...
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Example9_16{
public static void main(){
MyWindowEvent frame=new MyWindowEvent();
}
}
class MyWindowEvent←系统提示问题出在这里 extends JFrame implements WindowListener{
MyWindowEvent(){
this.addWindowListener(this);
this.setSize(300,200);
this.setTitle("窗口事件");
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void windowClosing(WindowEvent e) {
int result=JOptionPane.showConfirmDialog(this, "确定退出系统?","系"
+ "统消息",JOptionPane.YES_NO_OPTION);
if(result==JOptionPane.YES_OPTION){
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
}
如上面所说,编译的时候系统提示问题在那里,那然我就把所有监听的工具一起写上去了,然后就提示没有错误了,第一个问题,为什么给事件编译监听控件的时候,其他工具也要写上去?(比如我用了windowclosing,结果windowclose,windowsactivated等等这些都一定要写才不会出错,why?)
还有第二个问题,为什么我按照要求全部都申明了,结果只是没有错误了,但是没办法运行?WHY!!!!
求大神指导,在线等!!! 展开
import java.awt.*;
import java.awt.event.*;
public class Example9_16{
public static void main(){
MyWindowEvent frame=new MyWindowEvent();
}
}
class MyWindowEvent←系统提示问题出在这里 extends JFrame implements WindowListener{
MyWindowEvent(){
this.addWindowListener(this);
this.setSize(300,200);
this.setTitle("窗口事件");
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void windowClosing(WindowEvent e) {
int result=JOptionPane.showConfirmDialog(this, "确定退出系统?","系"
+ "统消息",JOptionPane.YES_NO_OPTION);
if(result==JOptionPane.YES_OPTION){
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
}
如上面所说,编译的时候系统提示问题在那里,那然我就把所有监听的工具一起写上去了,然后就提示没有错误了,第一个问题,为什么给事件编译监听控件的时候,其他工具也要写上去?(比如我用了windowclosing,结果windowclose,windowsactivated等等这些都一定要写才不会出错,why?)
还有第二个问题,为什么我按照要求全部都申明了,结果只是没有错误了,但是没办法运行?WHY!!!!
求大神指导,在线等!!! 展开
3个回答
展开全部
你实现了WindListener接口 就要实现接口内部的方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询