问答题
注意:请勿改动main()主方法和其他已有的语句内容,仅在下划线处填入适当的语句。
import java.awt.*;
import java.awt.event.*;
public class BlueWindow
{
public static void main(String args[])
{
Frame frm=new Frame("欢迎参加Java考试!");
TheAdapterTest listener=new TheAdapterTest();
frm._____________________
frm.setSize(200,200);
frm.setBackground(Color.blue);
frm.____________________
}
}
class TheAdapterTest extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
System.exit(1);
}
}