0

クラス間で MVC スタイルの書式設定を使用して Java で電卓 GUI スタイルを作成する必要があります。最初に入力した数値と 2 番目の数値を true/false ブール値で区別しようとしています。したがって、true の場合、数値は最初のもので、それが偽の場合、それが新しい数字であり、プラスまたはマイナスのいずれかがすでに押されていることを認識する必要があります。ブール値を返す public boolean メソッドを使用していますが、Calculations クラスにある if ステートメントが何らかの理由で機能しません。ここにコードがあります

計算クラス

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;


class Calc extends JFrame implements ActionListener {


    private JTextField numDisplay = new JTextField(10);
    private JButton plusButton = new JButton("+");
    private JButton minusButton = new JButton("-");
    private JButton clearButton = new JButton("Clear");
    private JButton equalsButton = new JButton("=");
    private JButton zeroButton = new JButton("0");
    private JButton oneButton = new JButton("1");
    private JButton twoButton = new JButton("2");
    private JButton threeButton = new JButton("3");
    private JButton fourButton = new JButton("4");
    private JButton fiveButton = new JButton("5");
    private JButton sixButton = new JButton("6");
    private JButton sevenButton = new JButton("7");
    private JButton eightButton = new JButton("8");
    private JButton nineButton = new JButton("9");
    private String number = "";
    private boolean trueFalse;   //plus or minus
    private boolean onOff = false;   //false = 1st int, true = 2nd int
    private int total;

    Calc(){
        JPanel calcPanel = new JPanel();

        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setSize(400, 600);
        calcPanel.add(numDisplay);
        calcPanel.add(plusButton);
        calcPanel.add(minusButton);
        calcPanel.add(clearButton);
        calcPanel.add(equalsButton);
        calcPanel.add(zeroButton);
        calcPanel.add(oneButton);
        calcPanel.add(twoButton);
        calcPanel.add(threeButton);
        calcPanel.add(fourButton);
        calcPanel.add(fiveButton);
        calcPanel.add(sixButton);
        calcPanel.add(sevenButton);
        calcPanel.add(eightButton);
        calcPanel.add(nineButton);

        this.add(calcPanel);

        plusButton.addActionListener(this);
        minusButton.addActionListener(this);
        clearButton.addActionListener(this);
        equalsButton.addActionListener(this);
        zeroButton.addActionListener(this);
        oneButton.addActionListener(this);
        twoButton.addActionListener(this);
        threeButton.addActionListener(this);
        fourButton.addActionListener(this);
        fiveButton.addActionListener(this);
        sixButton.addActionListener(this);
        sevenButton.addActionListener(this);
        eightButton.addActionListener(this);
        nineButton.addActionListener(this);

    }
    public void actionPerformed(ActionEvent event){
        if (event.getSource() instanceof JButton){
            JButton clickedButton = (JButton) event.getSource();
            String buttonText = clickedButton.getText();
            number = number + buttonText;
            if (clickedButton == clearButton){
                number = "";
                onOff = false;
            }
            if (clickedButton == plusButton){
                trueFalse = true;
                onOff = true;
            }
            if (clickedButton == minusButton){
                trueFalse = false;
                onOff = true;
                number = "";
            }
        }
    }
    public int getNumber(){
        return Integer.parseInt(number);
    }
    public boolean trueFalse(){
        return trueFalse;
    }
    public boolean onOff(){
        return onOff;
    }
    public int total(){
        return total;
    }
}    

そして、これが私が問題を抱えている計算クラスです。

public class Calculations
{
    private Calc theView;
    private CalculationModel theModel;
    private boolean onOff = theView.onOff();
    private boolean trueFalse = theView.trueFalse();

    public Calculations(Calc theView, CalculationModel theModel)
    {
        this.theView = theView;
        this.theModel = theModel;
    }

    if(trueFalse == true)     //this if statement isn't working
    {
        private int number1 = theView.getNumber();
    }



}
4

2 に答える 2

1

number1クラスメンバー変数として宣言する必要があります

private int number1;

このprivateキーワードはクラス ブロックでのみ使用できます。また、交換

if (trueFalse == true)     
{
   private int number1 = theView.getNumber(); 
}

if (trueFalse)    
{
   number1 = theView.getNumber();
}

メソッドに配置します。

参照:メンバー変数の宣言

于 2013-03-28T01:16:29.760 に答える
0

ヌルポインター例外がありますか?? これはよくわかりませんが、これを計算コンストラクターに追加してみてください

trueFalse = theView.trueFalse()

4行目を次のように編集します

private boolean trueFalse = false;

編集:コンストラクターの前にnumber1を宣言します

于 2013-03-28T01:18:52.513 に答える