[填空題] 下列JApplet實(shí)現(xiàn)了一個(gè)不可編輯的JTextArea和一個(gè)JButton。請(qǐng)?zhí)顚懻_的程序代碼。 import javax.swing.*;
2021-07-20
[填空題] 下列JApplet實(shí)現(xiàn)了一個(gè)不可編輯的JTextArea和一個(gè)JButton。請(qǐng)?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ī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。