当前位置:  技术问答>java相关

***一个奇怪的错误!!请帮忙!!谢谢

    来源: 互联网  发布时间:2017-04-05

    本文导语:  我做了一个小java程序,可是编译时出现如下错误: addMouseListener(java.awt.event.MouseListener) in java.awt.Component cannot be applied to (labelFrame)   addMouseListener(this); 1 error; 我的源代码如下: import java.awt.*; import java.awt.eve...

我做了一个小java程序,可是编译时出现如下错误:

addMouseListener(java.awt.event.MouseListener) in java.awt.Component cannot be applied to (labelFrame)
  addMouseListener(this);
1 error;



我的源代码如下:
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;

public class frame extends Applet implements ActionListener
{
  Button b1,b2;
  labelFrame window;

  public void init()
  {
  b1=new Button("Display the window");
  add(b1);
  b1.addActionListener(this);
  
  b2=new Button("Hide the window.");
  add(b2);
  b2.addActionListener(this);

  window=new labelFrame("Java window.");
  window.setSize(300,200);
  }

  public void actionPerformed(ActionEvent event)
  {
  if (event.getSource()==b1){
    window.setVisible(true);
  }
  if (event.getSource()==b2){
    window.setVisible(false);
  }
  }
  }


class labelFrame extends Frame 
{
  Label label;
  labelFrame(String title)
  {
  super(title);
  setLayout(new FlowLayout());
  label=new Label("Hello from Java! This is a frame window.");
  add(label);
  addMouseListener(this);
  }

  public void mousePressed(MouseEvent e)
  {
  if ((e.getModifiers() & InputEvent.BUTTON1_MASK)==InputEvent.BUTTON1_MASK){
    label.setText("Left ouse button down at "+e.getX()+","+e.getY());
  }
  else
   {label.setText("Right mouse button down at "+e.getX()+","+e.getY());
   }
  }
  
  public void mouseClicked(MouseEvent e)
  {
  label.setText("You clicked the mouse at "+e.getX()+","+e.getY());
  }

  public void mouseReleased(MouseEvent e)
  {
  label.setText("the mouse button went up.");
  }

  public void mouseEntered(MouseEvent e)
  {
  label.setText("The mouse entered.");
  }

  public void mouseExited(MouseEvent e)
  {
  label.setText("The mouse exited.");
  }

}

|
改成如下:(仔细看)
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;

public class frame extends Applet implements ActionListener
{
  Button b1,b2;
  labelFrame window;

  public void init()
  {
  b1=new Button("Display the window");
  add(b1);
  b1.addActionListener(this);

  b2=new Button("Hide the window.");
  add(b2);
  b2.addActionListener(this);

  window=new labelFrame("Java window.");
  window.setSize(300,200);
  }

  public void actionPerformed(ActionEvent event)
  {
  if (event.getSource()==b1){
    window.setVisible(true);
  }
  if (event.getSource()==b2){
    window.setVisible(false);
  }
  }
  }


class labelFrame extends Frame implements MouseListener
{
  Label label;
  labelFrame(String title)
  {
  super(title);
  setLayout(new FlowLayout());
  label=new Label("Hello from Java! This is a frame window.");
  add(label);
  addMouseListener(this);
  }

  public void mousePressed(MouseEvent e)
  {
  if ((e.getModifiers() & InputEvent.BUTTON1_MASK)==InputEvent.BUTTON1_MASK){
    label.setText("Left ouse button down at "+e.getX()+","+e.getY());
  }
  else
   {label.setText("Right mouse button down at "+e.getX()+","+e.getY());
   }
  }

  public void mouseClicked(MouseEvent e)
  {
  label.setText("You clicked the mouse at "+e.getX()+","+e.getY());
  }

  public void mouseReleased(MouseEvent e)
  {
  label.setText("the mouse button went up.");
  }

  public void mouseEntered(MouseEvent e)
  {
  label.setText("The mouse entered.");
  }

  public void mouseExited(MouseEvent e)
  {
  label.setText("The mouse exited.");
  }

}

|
addMouseListener(this)
你这个方法在哪???

    
 
 

您可能感兴趣的文章:

  • 一个特奇怪的函数申明错误
  • 奇怪的段错误
  • c/c++开源软件 iis7站长之家
  • 一个奇怪的错误,请高手解答
  • 奇怪的错误!关于Statement 的createStatement()!
  • 对环境变量的操作产生的奇怪的错误
  • 重分求解,为什么我碰见的错误都这么奇怪呀?
  • 奇怪:为什么我的Solaris上执行configure后生成的Makefile文件里面会有很多错误的指令?
  • 奇怪,为什么char ch='u10100'编译错误,而char ch='ujava'编译成功呢?
  • 急!奇怪,???得错了想要的结果但是却出现了错误提示为什么?
  • 使用java helloworld时出现的错误!好奇怪呀?
  • 奇怪的segmentation fault 错误!!!!!!!!!!!!!!
  • 环境变量设置遇到的奇怪错误!(在线等)
  • wolfsquare等高手进来看看吧,的确很奇怪!传递的参数在actionPerformed方法中发生的错误!
  • 在cygwin下制作arm交叉编译器时奇怪的错误,大家帮帮忙
  • make编译时,报奇怪错误。
  • 64位下gcc编译奇怪错误 /usr/include/linux/errqueue.h:6: error: '__u32' does not name a ty
  • 请大家帮我看看这个管道的程序.为什么有错误呢.奇怪.
  • linux下奇怪的编译错误!高分请教!
  • gcc 下段错误 奇怪的很
  • 好奇怪啊,大家帮忙啊
  • vsftpd配置的奇怪问题,大侠帮忙!在线等!
  • 奇怪的问题,请大家帮帮忙!
  • 奇怪的网卡问题,请大家帮忙解决!
  • linux下非常奇怪的问题!!高手帮忙!
  • 求教高手一个jbuilder开发中碰到的奇怪问题?真的不会了,一定要帮忙!
  • 关于javamail的奇怪问题,请大家帮忙!
  • LINUX系统遇到超级奇怪的事情,大家帮忙解惑
  • 关于semget的奇怪问题,请大家帮忙:)
  • LINUX下挂载DOS分区的很奇怪的问题.请帮忙解决.
  • jbuilder7编译jsp的奇怪问题,求高手帮忙!
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 奇怪!奇怪!真奇怪!!!
  • 奇怪奇怪真奇怪
  • 奇怪,真奇怪,在线等待
  • shm_open函数问题.奇怪!!!奇怪!!!!!
  • 奇怪奇怪...........?????...........
  • solaris上的C程序,编译报错: 存储类只能使用register,奇怪,奇怪!
  • 奇怪!奇怪!我用jbuilder编jsp程序,从数据库中取出的字符串型字段却显示16进制数
  • 奇怪的问题 奇怪的问题,向大家请教
  • 奇怪啊,奇怪,为什么我的JB7做EJB时,只要在EJB设计面板上随便做点东西,我的EJB的JAVA的源码就会变的不见了,或者少了很多字段申明??
  • 奇怪,CSDN的贴子,提问部分我最多能看到第4行??!!
  • accept,recvfrom接收到奇怪的ip
  • 好奇怪的问题哎………………怎么也不能安装!
  • unix下的非常的奇怪WC的问题,向unix高手请教 好急呀!!!!!!!!!!!!!!!
  • 奇怪!关于字串参数的问题?
  • 一个奇怪的路径问题
  • 一些奇怪的现象,帮帮我
  • !!!初学Java,遇到一个奇怪问题,请大家回答!!!
  • SOCKET发送奇怪问题!!!
  • 奇怪的四分之一屏!!
  • 请教redhat8.0中的两个问题~奇怪啊~


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3