getContentPane().add() 与 add() 含义相同吗
getContentPane().add() 与 add() 含义相同吗?
public class TestFrame extends JFrame{
public TestFrame() {
JLabel label = new JLabel("jo");
getContentPane().add(label);
add(label);
}
}
Does getContentPane().add() mean the same as add() ?
public class TestFrame extends JFrame{
public TestFrame() {
JLabel label = new JLabel("jo");
getContentPane().add(label);
add(label);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,从 1.5+ 开始。
Yes, since 1.5+.
大多。为了让事情变得“更简单”,
addImpl
被更改为转发到内容窗格,但在不常见的极端情况下却不会(例如,需要以某种方式添加内容窗格)。Mostly. To make things "easier",
addImpl
was changed to forward to the content pane, but in uncommon corner cases it doesn't (for instance, the content pane needs to be added somehow).是的,因为如果您注意到它们都来自
JLabel 扩展容器并且 getContentPane() 返回容器。
Yes, because if you notice they both are from
JLabel extends container and getContentPane() returns container.