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 的实际大小吗?