-6

我有一个 JComponent,它在类的主体中声明并在构造时调用的方法中初始化,但是当我尝试从同一个类中的不同方法访问其初始化方法之外的 JComponent 时,它返回 null。我不确定答案是否在问题之内,但我似乎无法弄清楚为什么会发生这种情况。

class panelSets {

    public JPanel sell_buy() {
        buy = new monetaryField("Buy: ",0);
    }

    public JSplitPane tax_profit() {         //Called on initialization
        cost = new monetaryField("- Cost: ",1);
    }

    public void setCost() {
        this.cost.copper.setText("33");     //Here is where the error occurs
}

    monetaryField buy;
    monetaryField cost;
}

这只是我的代码的一小段,这些实例所在的位置。如果它不在这里,我总是可以发布更多。此外,为了澄清,“cost”的子代不能被访问,因为“cost”对于 setCost() 是空的。

编辑:为了让每个人的日子更糟,“购买”可以从任何地方访问。

monetaryField(String s, int i) {
    label = new JLabel(s);
    gold = new singleField("gold.png");
    silver = new singleField("silver.png");
    copper = new singleField("copper.png");
    gold.addKeyListener(keys);
    silver.addKeyListener(keys);
    copper.addKeyListener(keys);

    if(i == 1) {
        gold.setEditable(false);
        silver.setEditable(false);
        copper.setEditable(false);
    }
    GroupLayout layout = new GroupLayout(this);             
    this.setLayout(layout);
    layout.setHorizontalGroup(
               layout.createSequentialGroup()
                  .addComponent(label)
                  .addComponent(gold)
                  .addComponent(silver)
                  .addComponent(copper)
            );
    layout.setVerticalGroup(
       layout.createSequentialGroup()
          .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
               .addComponent(label)
               .addComponent(gold)
               .addComponent(silver)
               .addComponent(copper)
            ));
}

...

singleField(String s) {         //Outputs a JFormattedTextField with an icon at the end
    setOpaque(false);
    image = getImage(s);
}
4

1 回答 1

3

检查monetaryField的构造函数并确保copper在其中初始化,此时显然它是null

this.cost.copper.setText("33");
             ^
    NullPointerException
于 2013-07-12T02:53:28.603 回答