getContentPane().add()是否与add()相同

why*_*why 9 java user-interface swing jframe

getContentPane().add()是否与add()相同?

public class TestFrame extends JFrame{
    public TestFrame() {
        JLabel label = new JLabel("jo");
        getContentPane().add(label);
        add(label);
    }
}
Run Code Online (Sandbox Code Playgroud)

And*_*son 13

getContentPane().add()是否与add()相同?

是的,自1.5+以来.

  • 还有一个有用的[请注意](http://download.oracle.com/javase/tutorial/uiswing/components/toplevel.html#contentpane). (2认同)