[填空題] 下列JApplet實現(xiàn)了一個不可編輯的JTextArea和一個JButton。請?zhí)顚懻_的程序代碼。 import javax.swing.*; i
2021-07-20
[填空題] 下列JApplet實現(xiàn)了一個不可編輯的JTextArea和一個JButton。請?zhí)顚懻_的程序代碼。 import javax.swing.*; import java.awt.*; public class Testl7 extends JApplet { JTextArea jta; public void init() {Container cp=getContentPane();cp.setLayout(new GridLayeut(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ī)學等領域),建議您咨詢相關領域?qū)I(yè)人士。