-2

这段代码的问题是,每当我运行它时,它都会显示

编译错误——

“找不到符号:构造函数 mywindowadapter(frame1)

位置:类 mywindowadapter mywindowadapter mwa=new mywindowadapter()"

import java.awt.*;
import java.awt.event.*;
/*<applet code=frame2 width=500 height=500>
</applet>*/
class frame2 extends Frame
{
    frame2(String title)
    {
        super(title);
        mywindowadapter mwa=new mywindowadapter();
        addWindowListener(mwa);     
    }
    public static void main(String ar[])
    {
        frame1 f=new frame1("my frame");
        f.setVisible(true);
        f.setSize(200,100);

     }
    public void paint(Graphics g)
     {
    g.drawString("hello frame",60,70);
     }
}
class mywindowadapter extends WindowAdapter
{

    mywindowadapter()
    {
        frame2 f=new frame2();  
    }
    public void windowClosing(WindowEvent we)
    {
        f.setVisible(false);
        System.exit(0);
    }
} 

下面的代码是上面代码的修正版。我无法理解前面代码中生成的错误。请帮忙!!

import java.awt.*;
import java.awt.event.*;
/*<applet code=frame1 width=500 height=500>
</applet>*/
class frame1 extends Frame
 {
    frame1(String title)
    {
        super(title);
        mywindowadapter mwa=new mywindowadapter(this);
        addWindowListener(mwa);     
    }
    public static void main(String ar[])
    {
        frame1 f=new frame1("my frame");
        f.setVisible(true);
        f.setSize(200,100);

    }
   public void paint(Graphics g)
    {
        g.drawString("hello frame",60,70);
    }
}
class mywindowadapter extends WindowAdapter
{
    frame1 f;
    mywindowadapter(frame1 f)
    {
        this.f=f;   
    }
    public void windowClosing(WindowEvent we)
    {
        f.setVisible(false);
        System.exit(0);
    }
}   
4

1 回答 1

0

因为在您的构造函数中,frame1您正在尝试创建一个适配器实例,该实例利用适配器模式并将处理事件委托frame1给您作为参数传递的引用的适配器。此适配器由您添加到的侦听器列表中的侦听器使用frame1

于 2013-03-22T19:44:29.863 回答