[填空題] 本題的功能是在文本域面板中添加一個(gè)帶有行數(shù)的面板。窗口中有一個(gè)文本域,在文本域的左側(cè)有一個(gè)帶有數(shù)字的面板,該面板上的數(shù)字指示著文本域中的行數(shù)。 i
[填空題] 本題的功能是在文本域面板中添加一個(gè)帶有行數(shù)的面板。窗口中有一個(gè)文本域,在文本域的左側(cè)有一個(gè)帶有數(shù)字的面板,該面板上的數(shù)字指示著文本域中的行數(shù)。
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
public class java3 extends JFrame
public static JTextPane textPane;
public static JScrollPane scrollPane;
JPanel panel;
public java3()
super("java3()");
panel=new JPanel();
panel.setLayout(new BorderLayout());
panel.setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
textPane=new JTextPane();
textPane.setFont(new Font("monospaced",Font.PLAIN,12));
scrollPane=new JScrollPane(textPane);
panel.add(scrollPane);
scrollPane.setPreferredsize(new Dimension(300,250));
setContentPane(panel);
setCloseOperation(JFrame.EXIT_ON_CLOSE);
LineNumber
正確答案:第A處:scrollpane.setPreferredSize(new Dimension(C00,BE0)) 第B處:setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) 第C處:LineNumber LineNumber=new LineNumber(textPane)
參考解析:第1處Java是大小寫敏感的;第2處設(shè)置窗口關(guān)閉方式應(yīng)使用setDefaultCloseOperation()方法;第3處從下面的public LineNumber(JComponent component)可以看出LineNumber()需要JComponent型參數(shù)。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。