此代码的问题在于,无论何时运行此代码,都会显示编译错误:
找不到符号:构造函数mywindowadapter(frame1)
location:class 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[])
{
frame2 f=new frame2("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=frame2 width=500 height=500>
</applet>*/
class frame2 extends Frame
{
frame2(String title)
{
super(title);
mywindowadapter mwa=new mywindowadapter(this);
addWindowListener(mwa);
}
public static void main(String ar[])
{
frame2 f=new frame2("my frame");
f.setVisible(true);
f.setSize(200,100);
}
public void paint(Graphics g)
{
g.drawString("hello frame",60,70);
}
}
class mywindowadapter extends WindowAdapter
{
frame2 f;
mywindowadapter(frame2 f)
{
this.f=f;
}
public void windowClosing(WindowEvent we)
{
f.setVisible(false);
System.exit(0);
}
}
答案 0 :(得分:0)
frame2没有默认构造函数,您尝试在适配器中使用它。
为frame2提供默认构造函数或将适当的参数传递给现有的构造函数。
第一个代码当然有很多编译错误,请修复它们。就像在windowClosing()中一样,你不能引用f。
答案 1 :(得分:0)
对我来说,看起来你有两个版本的mywindowadapter
类,一个带有参数的构造函数,另一个带有没有参数的构造函数。两者都在同一个包装中。所以当编译mywindowadapter
时没有参数构造函数会覆盖另一个。
同样,带有参数的构造函数的类可能不在您调用其构造函数的包中。
检查是否是其中一种情况。