JAVA----我在使用MouseListener接口是写mouseClicked方法时,直接异常

新手求指点!!!!!publicclassMyFrameextendsJFrameimplementsMouseListener{/**CreatesnewformMyF... 新手求指点!!!!!
public class MyFrame extends JFrame implements MouseListener {

/** Creates new form MyFrame */
public MyFrame() {

this.setVisible(true);
this.setTitle("五子");
this.setSize(200, 100);
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
int width=Toolkit.getDefaultToolkit().getScreenSize().width;
int height=Toolkit.getDefaultToolkit().getScreenSize().height;
System.out.println("宽度为;"+width);
System.out.println("高度为;"+height);
this.setLocation((width-200)/2,(height-200)/2);

this.addMouseListener(this);

public void mouseClicked(MouseEvent e) {
// throw new UnsupportedOperationException("Not supported yet.");
System.out.println("鼠标点击");
}

public void mousePressed(MouseEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}

public void mouseReleased(MouseEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}

public void mouseEntered(MouseEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}

public void mouseExited(MouseEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}
throw new UnsupportedOperationException("Not supported yet.");
的意思是不是直接异常
所以我写 System.out.println("鼠标点击");
时一定要把每个方法离的throw new UnsupportedOperationException("Not supported yet.");
注掉才不会异常
展开
 我来答
百度网友3b46a7f
2010-02-03 · TA获得超过2520个赞
知道小有建树答主
回答量:735
采纳率:0%
帮助的人:0
展开全部
如果你只是想在点击窗体的时候弹出提示,那么只需要实现mouseClicked方法就可以了,其他的mouse*方法体为空就可以了 不需要throw异常的。
下面我只是把抛出异常改为打印方法名,你可以看情况修改~~
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;

import javax.swing.JFrame;

public class MyFrame extends JFrame implements MouseListener {

/** Creates new form MyFrame */
public MyFrame() {

this.setVisible(true);
this.setTitle("五子");
this.setSize(200, 100);
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
int width=Toolkit.getDefaultToolkit().getScreenSize().width;
int height=Toolkit.getDefaultToolkit().getScreenSize().height;
System.out.println("宽度为;"+width);
System.out.println("高度为;"+height);
this.setLocation((width-200)/2,(height-200)/2);

this.addMouseListener(this);
}

public void mouseClicked(MouseEvent e) {
// throw new UnsupportedOperationException("Not supported yet.");
System.out.println("鼠标点击");
}

public void mousePressed(MouseEvent e) {
System.out.println("mousePressed");
}

public void mouseReleased(MouseEvent e) {
System.out.println("mouseReleased");
}

public void mouseEntered(MouseEvent e) {
System.out.println("mouseEntered");
}

public void mouseExited(MouseEvent e) {
System.out.println("mouseExited");
}
}
23746021
2010-02-03 · TA获得超过1467个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:395万
展开全部
实现其它mouse事件的方法体内留空,仅click事件做相应处理。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式