请问这句话中的Integer.MIN_VALUE是什么意思?
public class JXCInfo {
private JLabel backLabel;
private JDesktopPane desktopPane;
private JFrame frame;
public JXCInfo(){
frame=new JFrame("信息管理部进销存系统");
frame.addComponentListener(new FrameListener());
frame.getContentPane().setLayout(new BorderLayout());
frame.setBounds(100, 100, 800, 600);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
backLabel=new JLabel();
backLabel.setVerticalAlignment(SwingConstants.TOP);
backLabel.setHorizontalAlignment(SwingConstants.CENTER);
this.updateBackImage();
desktopPane=new JDesktopPane();
desktopPane.add(backLabel,new Integer(Integer.MIN_VALUE));
frame.getContentPane().add(backLabel);
JTabbedPane navigationPanel=createNavigationPanel();
frame.setVisible(true);
}
}
书上看到的实例代码
请问加红的那句话有什么用,特别是new Integer(Integer.MIN_VALUE)中的Integer.MIN_VALUE,不知道什么意思