问题 多项选择题

简单应用题请完成下列Java程序:使用JTabbedPane在窗口顶部建立一个图形标签,包含有两个标签窗格,一个使用简单表签(Label)显示欢迎信息,一个使用按钮和图标。注意:请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。程序运经结果如下:

import javax.swing.*;import java.awt.*;import java.awt.event.*;public class ex8_2 extends JPanel{ public ex8_2(){ JTabbedPane jtp=new JTabbedPane(SwingConstants.BOTTOM); Icon icon=new ImageIcon("icon.gif"); JButton btn=new JButton(icon); JLabel l=new JLabel("Welcome to the NCR Examination!");;; setLayout(new BorderLayout()); add(jtp,"Center"); } public static void main(String args[]){ ex8_2 obj8_2=new ex8_2(); String str = obj8_2.getClass().toString(); if(str.indexOf("class") != -1)str = str.substring(6);JFrame frm = new JFrame(str);frm.addWindowListener(new WindowAdapter() {public void windowClosing(WindowEvent we) { System.exit(0);} });frm.getContentPane().add(obj8_2); frm.setSize(300, 200);frm.setVisible(true); } }

答案

参考答案:jtp.addTab("Icon",icon,btn)jtp.addTab("Welcome",l)

解析:本题主要考查使用JPanel构件创建图形用户界面。解题关键是熟悉JTabbedPanel类的使用方法,包括创建图形标签,并加入Frame容器中,以及在标签窗口中添加标签窗格,定制标签窗格等。本题中,第1个空,调用addTab()方法将标签对象l加入jtp对象中;第2个空,调用addTab()方法将icon和btn的混合对象加入jtp对象中。

单项选择题
单项选择题