填空题
下列程序中,实例tat 是监听器,fr是事件源,fr上发生的事件委托tat进行处理。程序的执行结果是显示一个粉红色的窗口,单击关闭按钮,可关闭窗口。请将程序补充完整。
import java. awt.*;
import java. awt.event.*
public class Testppp
public static void main ( String args [])
Frame fr = new Frame ("The Adapter !" );
TheAdapterTest tat=new TheAdpterTest ( ):
fr. 【14】
fr. setSize (200, 200):
fr. setBackground (Color. pink);
fr. setVisble (true):
class TheAdapterTest extends WindowAdapter
public voidWindowClosing (WindowEvent e)
System.exit ( 1);
【正确答案】
1、addWindowListenet(tat);
【答案解析】