[問答題] 本題程序的功能是監(jiān)聽鍵盤敲擊事件,并將敲擊的字符顯示在標(biāo)簽上。開始時(shí)文字標(biāo)簽提示“Please press your keyboard!”,當(dāng)按下鍵
[問答題] 本題程序的功能是監(jiān)聽鍵盤敲擊事件,并將敲擊的字符顯示在標(biāo)簽上。開始時(shí)文字標(biāo)簽提示“Please press your keyboard!”,當(dāng)按下鍵盤上的字符鍵時(shí),文字標(biāo)簽就變?yōu)椤啊疿’is pressed!”(X代表用戶按下的鍵所代表的字符)。請(qǐng)將下述程序補(bǔ)充完整(注意:不得改動(dòng)程序的結(jié)構(gòu),不得增行或刪行)。
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()。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。