[填空題] 下列JApplet實現(xiàn)了一個不可編輯的JTextArea和一個JButton。請?zhí)顚懻_的程序代碼。 import javax.swing.*;
2021-07-20
[填空題] 下列JApplet實現(xiàn)了一個不可編輯的JTextArea和一個JButton。請?zhí)顚懻_的程序代碼。
import javax.swing.*;
import java.awt.*;
public class Test17 extends JApplet
JTextArea jta;
public void init()
Container cp = getContentPane();
cp.setLayout( new GridLayout(2,1));
jta = new JTextArea(30,30);
jta.setEditable( true);
【15】
jta.setText("你好");
JButton jb = new JButton ("ok");
cp.add(jB) ;
正確答案:
cp.add(jtA)
參考解析:在JApplet中添加構(gòu)件就是在內(nèi)容面板中添加構(gòu)件,因此需要先得到內(nèi)容面板,然后再向其中添加Swing構(gòu)件。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。