与WindowListener接口对应的适配器类为WindowAdapter。
举一反三
- java. awt. event包中的WindowAdapter类实现了WindowListener接口
- 为监听键盘事件,监听器必须实现哪个接口或继承哪个类() A: MouseListener/MouseAdapter B: KeyListener/KeyAdapter C: WindowListener/WindowAdapter D: ComponentListener/ComponentAdapter
- 下列方法中,不属于WindowListener接口的是(<br/>) A: windowOpened() B: windowClosed() C: windowActivated() D: windowAdapter
- 为了监听鼠标移动事件,监听器必须实现()接口,或者继承()类. A: MouseListener/MouseAdapter B: MouseMotionListener/MouseMotionAdapter C: WindowListener/WindowAdapter D: ComponentListener/ComponentAdapter
- 类结构型适配器模式:(1) 一次最多只能适配一个适配者类,不能同时适配多个适配者;(2) 适配者类不能为最终类;(3) 目标抽象类只能为接口,不能为类