这是面板的实际尺寸吗?
JPanel scorePanel = new JPanel();
scorePanel.setBackground( new Color( 95 , 8 , 248 , 255 ));
JLabel scoreLabel = new JLabel( "Score : 0" );
scoreLabel.setForeground( Color.white );
scoreLabel.setFont( new Font( "Cambria" , Font.BOLD , 20 ) );
scorePanel.add(scoreLabel);
Dimension d =new Dimension( scorePanel.getSize() );
System.out.println(d);
当与整个代码一起运行时,此代码片段的输出是 -java.awt.Dimension[width=0,height=0]
为什么我会得到这个输出,当我在 Scorepanel 中时尺寸为 20 的标签? 这是 记分面板的实际大小吗?
JPanel scorePanel = new JPanel();
scorePanel.setBackground( new Color( 95 , 8 , 248 , 255 ));
JLabel scoreLabel = new JLabel( "Score : 0" );
scoreLabel.setForeground( Color.white );
scoreLabel.setFont( new Font( "Cambria" , Font.BOLD , 20 ) );
scorePanel.add(scoreLabel);
Dimension d =new Dimension( scorePanel.getSize() );
System.out.println(d);
The output of this snippet when run along with the whole code is-java.awt.Dimension[width=0,height=0]
Why do i get this output, when in scorepanel i have a label of size 20 ? Is this the actual size of scorepanel ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不是。一旦实现(即打包到容器中并渲染),组件的实际尺寸将可用。
No, it's not. Once it's been realized (i.e. packed into a container and rendered), the actual dimensions of the component will be made available.