有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

初始化期间的java空变量

import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ClosetTableUI extends JFrame{

public ClosetTableUI(ClosetTableCntl theCreatingCntl){
    initComponents(); 
 theCTCntl = theCreatingCntl;

}

InitComponents是初始化所有变量的地方

private void initComponents() {

     if(theTopTable == null){
        System.out.println("Top Table was null");
    }
    if(theCTCntl.getTopTableModel() == null){
        System.out.println("get Top Table Model was null");
    }

这就是发生错误的地方:

    theTopTable = new JTable(theCTCntl.getTopTableModel());


    topNewButton = new javax.swing.JButton();
    topDeleteButton = new javax.swing.JButton();
    topScrollPane = new javax.swing.JScrollPane(theTopTable);
    theBottomTable = new JTable(theCTCntl.getBottomModel());
    bottomScrollPane = new javax.swing.JScrollPane(theBottomTable);
    bottomNewButton = new javax.swing.JButton();
    bottomDeleteButton = new javax.swing.JButton();
    theAccessoryTable = new JTable(theCTCntl.getAccessoryModel());
    accessoryScrollPane = new javax.swing.JScrollPane(theAccessoryTable);
    topTextField = new javax.swing.JTextField();
    bottomTextField = new javax.swing.JTextField();
    accessoryTextField = new javax.swing.JTextField();

剩下的就是netbeans GUI生成器设置各种属性

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

    topNewButton.setText("New Top");

    topDeleteButton.setText("Delete Top");

    bottomNewButton.setText("New Bottom");

    bottomDeleteButton.setText("Delete Bottom");

    accessoryNewButton.setText("New Accessory");

    accessoryDeleteButton.setText("Delete Accessory");

    topTextField.setText("Enter New Top Here");

    bottomTextField.setText("Enter New Bottom Here");

    accessoryTextField.setText("Enter New Accessory Here");

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                            .addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                .addComponent(topDeleteButton)
                                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 114, Short.MAX_VALUE)
                                .addComponent(topNewButton))
                            .addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(bottomNewButton)
                                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                                    .addComponent(bottomScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 274, Short.MAX_VALUE)
                                    .addComponent(topScrollPane))))
                        .addComponent(bottomDeleteButton))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(bottomTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(topTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 159, javax.swing.GroupLayout.PREFERRED_SIZE)))
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                        .addComponent(accessoryScrollPane, javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                            .addComponent(accessoryDeleteButton)
                            .addGap(55, 55, 55)
                            .addComponent(accessoryNewButton)))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(accessoryTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE)))
            .addContainerGap(60, Short.MAX_VALUE))
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addContainerGap()
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(topNewButton)
                .addComponent(topDeleteButton)
                .addComponent(topTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
            .addComponent(topScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 103, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(bottomDeleteButton)
                .addComponent(bottomNewButton)
                .addComponent(bottomTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
            .addComponent(bottomScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 110, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(accessoryDeleteButton)
                .addComponent(accessoryNewButton)
                .addComponent(accessoryTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
            .addComponent(accessoryScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 111, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
    );
    accessoryDeleteButton.addActionListener(new DeleteAccessoryListener());
    accessoryNewButton.addActionListener(new NewAccessoryListener());
    topNewButton.addActionListener(new NewTopListener());
    topDeleteButton.addActionListener(new DeleteTopListener());
    bottomDeleteButton.addActionListener(new DeleteBottomListener());
    bottomNewButton.addActionListener(new NewBottomListener());


    this.setVisible(true);
    pack();

}// </editor-fold>                        

这里是我的变量声明的地方:

private javax.swing.JButton accessoryDeleteButton;
private javax.swing.JButton accessoryNewButton;
private javax.swing.JScrollPane accessoryScrollPane;
private javax.swing.JTextField accessoryTextField;
private javax.swing.JButton bottomDeleteButton;
private javax.swing.JButton bottomNewButton;
private javax.swing.JScrollPane bottomScrollPane;
private javax.swing.JTextField bottomTextField;
private javax.swing.JButton topDeleteButton;
private javax.swing.JButton topNewButton;
private javax.swing.JScrollPane topScrollPane;
private javax.swing.JTextField topTextField;
JTable theTopTable;
JTable theBottomTable;
JTable theAccessoryTable;
ClosetTableCntl theCTCntl;

最后,这里是输出以及我一直收到的错误消息

Top Table was null
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at fashionforecast2.ClosetTableUI.initComponents(ClosetTableUI.java:35)
at fashionforecast2.ClosetTableUI.<init>(ClosetTableUI.java:22)
at fashionforecast2.ClosetTableCntl.<init>(ClosetTableCntl.java:15)
at fashionforecast2.MainMenuCntl.getClosetTableCntl(MainMenuCntl.java:29)
at fashionforecast2.MainMenuUI$ClosetListener.actionPerformed(MainMenuUI.java:70)

根据我收集的信息,我的变量theTopTable为null。但我不确定这是为什么。我在类的底部声明变量,然后在初始化它的过程中,它给我一个空错误

我困惑的是这一点;为什么在尝试初始化该表时出现空错误?当然这个表是空的,我还没有初始化它。但它给了我一个错误,我正试图初始化它

任何帮助都将不胜感激


共 (1) 个答案

  1. # 1 楼答案

    initComponents方法有以下代码行:

    if(theCTCntl.getTopTableModel() == null){
        System.out.println("get Top Table Model was null");
    }
    

    但是theCTCntl这里是null,因为在类构造函数中调用initComponents后正在初始化:

    public ClosetTableUI(ClosetTableCntl theCreatingCntl){
        initComponents(); 
        theCTCntl = theCreatingCntl;
    }
    

    只需更改代码的顺序:

    public ClosetTableUI(ClosetTableCntl theCreatingCntl){
        theCTCntl = theCreatingCntl;
        initComponents(); 
    }
    

    更多信息: