创建对象是要new的,比如,Integer a = new Integer(10);
这个好像要用其它控件的

解决方案 »

  1.   

    我当然知道要用 new 创建 
    主要是我想做 那个页框啊 
    谁能来帮忙啊 急急啊
      

  2.   

    任何语言都有这个控件,难道JAVA中没有吗?  不会吧
      

  3.   

    javax.swing 
    Class JTabbedPane
    java.lang.Object
      |
      +--java.awt.Component
            |
            +--java.awt.Container
                  |
                  +--javax.swing.JComponent
                        |
                        +--javax.swing.JTabbedPaneAll Implemented Interfaces: 
    Accessible, ImageObserver, MenuContainer, Serializable, SwingConstants --------------------------------------------------------------------------------public class JTabbedPane
    extends JComponent
    implements Serializable, Accessible, SwingConstants
    A component that lets the user switch between a group of components by clicking on a tab with a given title and/or icon. For examples and information on using tabbed panes see How to Use Tabbed Panes, a section in The Java Tutorial. Tabs/components are added to a TabbedPane object by using the addTab and insertTab methods. A tab is represented by an index corresponding to the position it was added in, where the first tab has an index equal to 0 and the last tab has an index equal to the tab count minus 1. The TabbedPane uses a SingleSelectionModel to represent the set of tab indices and the currently selected index. If the tab count is greater than 0, then there will always be a selected index, which by default will be initialized to the first tab. If the tab count is 0, then the selected index will be -1. For the keyboard keys used by this component in the standard Look and Feel (L&F) renditions, see the JTabbedPane key assignments. Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. A future release of Swing will provide support for long term persistence. 
    See Also: 
    SingleSelectionModel, Serialized Form
      

  4.   

    import javax.swing.JTabbedPane;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JFrame;import java.awt.*;
    import java.awt.event.*;public class TabbedPaneDemo extends JPanel {
        public TabbedPaneDemo() {
            ImageIcon icon = new ImageIcon("images/middle.gif");
            JTabbedPane tabbedPane = new JTabbedPane();        Component panel1 = makeTextPanel("Blah");
            tabbedPane.addTab("One", icon, panel1, "Does nothing");
            tabbedPane.setSelectedIndex(0);        Component panel2 = makeTextPanel("Blah blah");
            tabbedPane.addTab("Two", icon, panel2, "Does twice as much nothing");        Component panel3 = makeTextPanel("Blah blah blah");
            tabbedPane.addTab("Three", icon, panel3, "Still does nothing");        Component panel4 = makeTextPanel("Blah blah blah blah");
            tabbedPane.addTab("Four", icon, panel4, "Does nothing at all");        //Add the tabbed pane to this panel.
            setLayout(new GridLayout(1, 1)); 
            add(tabbedPane);
        }    protected Component makeTextPanel(String text) {
            JPanel panel = new JPanel(false);
            JLabel filler = new JLabel(text);
            filler.setHorizontalAlignment(JLabel.CENTER);
            panel.setLayout(new GridLayout(1, 1));
            panel.add(filler);
            return panel;
        }    public static void main(String[] args) {
            JFrame frame = new JFrame("TabbedPaneDemo");
            frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}
            });        frame.getContentPane().add(new TabbedPaneDemo(), 
                                       BorderLayout.CENTER);
            frame.setSize(400, 125);
            frame.setVisible(true);
        }
    }