[问答题] 本题程序的功能是监听键盘敲击事件,并将敲击的字符显示在标签上。开始时文字标签提示“Please press your keyboard!”,当按下键盘上的字符键时,文字标签就变为“’X’i

17 查阅

[问答题] 本题程序的功能是监听键盘敲击事件,并将敲击的字符显示在标签上。开始时文字标签提示“Please press your keyboard!”,当按下键盘上的字符键时,文字标签就变为“’X’is pressed!”(X代表用户按下的键所代表的字符)。请将下述程序补充完整(注意:不得改动程序的结构,不得增行或删行)。

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

public class simple extends Frame ______

public static void main(String args[])

simple f = new simple("simple");

Panel pan = new Panel();

f.init();

public simple(String str)

super (str);

public void init()

addWindowListener(new WindowAdapter()

public void windowClosing(WindowEvent e)

System.exit (0);

);

setSize(200,200);

setLayout(new FlowLayout());

lab = new Label("Please press your keyboard!");

add(lab);

addKeyListener(this);

参考答案:

implements KeyListener。 e.getKeyChar()。

计算机考试