2
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 的标签时?这是 scorepanel 的实际大小吗?

4

1 回答 1

3

不,不是。一旦实现(即打包到容器中并渲染),组件的实际尺寸将可用。

于 2011-06-24T15:30:13.563 回答