0

最近、スイング計算機のボタンのサイズを変更する際に問題が発生しています。実行すると、通常の Windows 電卓とほぼ同じように機能する電卓が表示されます。しかし、私はそれを通常の Windows 電卓とまったく同じように見せようとしています。コードを書きましたが、いくつか質問があります。

  1. 等号を 2 回押すと、テキストの数字がゼロに設定されることがわかります。誰かがそれを修正するためのヒントを教えてもらえますか?
  2. 2 つの機能を連続して押すと (例: 加算と乗算)、通常は最初の機能が実行されることがわかります。押された 2 番目の機能を実行する必要があります。繰り返しますが、誰かがそれを修正するためのヒントを教えてくれませんか?
  3. Ggraphics: ボタンのサイズを変更するにはどうすればよいですか? buttons.resize() を呼び出してみたところ、Java API の場合と同じように機能するはずでしたが、なぜか効果がありません。
  4. ボタンのテキストを別の色に設定するにはどうすればよいですか?

ところで、誰かが最初にグラフィックスの質問に答えてくれたらいいのですが、私は自分で機能を理解できると確信しています.

   import java.awt.BorderLayout;
   import java.awt.Color;
   import java.awt.Container;
   import java.awt.FlowLayout;
   import java.awt.GridLayout;
   import java.awt.event.ActionEvent;
   import java.awt.event.ActionListener;
   import javax.swing.*;
   import java.awt.GridBagConstraints;
   import java.awt.Dimension;

    public class Calculator extends JFrame implements ActionListener
   {  
      JButton button1 = new JButton("1");
      JButton button2 = new JButton("2");
      JButton button3 = new JButton("3");
      JButton button4 = new JButton("4");
      JButton button5 = new JButton("5");
      JButton button6 = new JButton("6");
      JButton button7 = new JButton("7");
      JButton button8 = new JButton("8");
      JButton button9 = new JButton("9");
      JButton button0 = new JButton("0");

      JButton buttonAdd = new JButton("+");
      JButton buttonSub = new JButton("-");
      JButton buttonMult = new JButton("*");
      JButton buttonDiv = new JButton("/");
      JButton buttonEquals = new JButton("=");
      JButton buttonClear = new JButton("C");

      JButton plusOrMinus = new JButton("+/-");
      JButton decimal = new JButton(".");
      JButton squareRoot = new JButton("sqrt.");
      JButton inverse = new JButton("1/x");
      JButton mod = new JButton("%");
      JButton backSpace = new JButton("Backspace");
      JButton clearE = new JButton("CE");

      JButton memoryClear = new JButton("MC");
      JButton memoryRecall = new JButton("MR");
      JButton memoryStore = new JButton("MS");
      JButton memoryAdd = new JButton("M+");

      JPanel jBack = new JPanel();
      JLabel output = new JLabel("0");
      JPanel jSpacing = new JPanel();
      JPanel jMstr = new JPanel();
      JPanel buttonSpace = new JPanel();

      double firstNumber, memoryNumber;
      String opera = "0";
      boolean clear;

       public Calculator()
      {     
         output.setHorizontalTextPosition(JLabel.RIGHT);
         output.setBackground(Color.WHITE);
         output.setOpaque(true);

         getContentPane().add(output, BorderLayout.NORTH);

         jBack.setLayout(new GridLayout(1, 1, 2, 2));
         jBack.add(backSpace);

         jSpacing.setLayout(new GridLayout(1, 2, 2, 2));        
         jSpacing.add(clearE);
         jSpacing.add(buttonClear);

         buttonSpace.setLayout(new GridLayout(4, 5, 2, 2));

         buttonSpace.add(memoryClear);   
         buttonSpace.add(button7);
         buttonSpace.add(button8);
         buttonSpace.add(button9);
         buttonSpace.add(buttonDiv);
         buttonSpace.add(squareRoot);

         buttonSpace.add(memoryRecall);   
         buttonSpace.add(button4);
         buttonSpace.add(button5);
         buttonSpace.add(button6);
         buttonSpace.add(buttonMult);
         buttonSpace.add(inverse);

         buttonSpace.add(memoryStore);         
         buttonSpace.add(button1);
         buttonSpace.add(button2);
         buttonSpace.add(button3);
         buttonSpace.add(buttonSub);
         buttonSpace.add(mod);

         buttonSpace.add(memoryAdd);
         buttonSpace.add(button0);
         buttonSpace.add(plusOrMinus);
         buttonSpace.add(decimal);
         buttonSpace.add(buttonAdd);
         buttonSpace.add(buttonEquals);

         jMstr.setLayout(new BorderLayout());
         jMstr.add(jBack, BorderLayout.WEST);
         jMstr.add(jSpacing, BorderLayout.EAST);
         jMstr.add(buttonSpace, BorderLayout.SOUTH);

         getContentPane().add(jMstr, BorderLayout.SOUTH);

         button1.addActionListener(this);
         button2.addActionListener(this);
         button3.addActionListener(this);
         button4.addActionListener(this);
         button5.addActionListener(this);
         button6.addActionListener(this);
         button7.addActionListener(this);
         button8.addActionListener(this);
         button9.addActionListener(this);
         button0.addActionListener(this);

         buttonAdd.addActionListener(this);
         buttonSub.addActionListener(this);
         buttonMult.addActionListener(this);
         buttonDiv.addActionListener(this);
         buttonEquals.addActionListener(this);
         buttonClear.addActionListener(this);

         plusOrMinus.addActionListener(this);
         decimal.addActionListener(this);
         squareRoot.addActionListener(this);
         inverse.addActionListener(this);
         mod.addActionListener(this);
         backSpace.addActionListener(this);
         clearE.addActionListener(this);

         memoryClear.addActionListener(this);
         memoryRecall.addActionListener(this);
         memoryStore.addActionListener(this);
         memoryAdd.addActionListener(this);

         try
         {
            UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }

             catch(Exception e)
            {
            }       

         SwingUtilities.updateComponentTreeUI(jMstr);       
      }

       public void actionPerformed(ActionEvent e)
      {
         double result = 0;

         if(e.getSource() == buttonEquals)
         {
            processEquals();
         }

         if(e.getSource() == button0)
         {
            putDigitOnLabel(0);
         }

         if(e.getSource() == button1)
         {
            putDigitOnLabel(1);
         }

         if(e.getSource() == button2)
         {
            putDigitOnLabel(2);
         }

         if(e.getSource() == button3)
         {
            putDigitOnLabel(3);
         }

         if(e.getSource() == button4)
         {
            putDigitOnLabel(4);
         }

         if(e.getSource() == button5)
         {
            putDigitOnLabel(5);
         }

         if(e.getSource() == button6)
         {
            putDigitOnLabel(6);
         }

         if(e.getSource() == button7)
         {
            putDigitOnLabel(7);
         }

         if(e.getSource() == button8)
         {
            putDigitOnLabel(8);
         }

         if(e.getSource() == button9)
         {
            putDigitOnLabel(9);
         }

         if(e.getSource() == plusOrMinus)
         {
            changeSign();
         }

         if(e.getSource() == decimal)
         {
            addDecimalPoint();
         }

         if(e.getSource() == buttonDiv)
         {
            if(getNumberInDisplay() == 0)
            {
               output.setText("Cannot divide a number by zero.");
            }
            operation("/");
         }

         if(e.getSource() == buttonMult)
         {
            operation("*");
         }

         if(e.getSource() == buttonSub)
         {
            operation("-");
         }

         if(e.getSource() == buttonAdd)
         {
            operation("+");
         }

         if(e.getSource() == squareRoot)
         {
            if(getNumberInDisplay() < 0)
            {
               output.setText("Cannot take the square root of a negative number.");
            }

            double num = Math.sqrt(Double.parseDouble(output.getText()));
            output.setText(Double.toString(num));

         }

         if(e.getSource() == inverse)
         {
            if(getNumberInDisplay() == 0)
            {
               output.setText("Cannot take the inverse of the number zero");
            }
            double num = 1/( Double.parseDouble(output.getText()));
            output.setText(Double.toString(num));
         }

         if(e.getSource() == mod)
         {
            result = getNumberInDisplay() / 100;
            displayResult(result);
         }

         if(e.getSource() == backSpace)
         {


     setTextOnOutput(getStringOnDisplay().substring(0, getStringOnDisplay().length()-1));   


         }

         if(e.getSource() == clearE)
         {
            clearEverythingButOperation();
         }

         if(e.getSource() == buttonClear)
         {
            clearEverything();
         }  

         if(e.getSource() == memoryRecall)
         {
            displayResult(memoryNumber);
         }

         if(e.getSource() == memoryStore)
         {
            memoryNumber = getNumberInDisplay();
         }

         if(e.getSource() == memoryAdd)
         {
            memoryNumber += getNumberInDisplay();
         }   

         if(e.getSource() == memoryClear)
         {
            memoryNumber = 0;
         }                          
      } 

       public void setTextOnOutput(String s)
      {
         output.setText(s);
      }

       public String getStringOnDisplay()
      {
         return output.getText();
      }

       public void putDigitOnLabel(int digit)
      {
         if(clear == true)
         {
            output.setText("");
         }

         if(getStringOnDisplay().indexOf("0") == 0)
         {
            setTextOnOutput(getStringOnDisplay().substring(1));
         }

         output.setText(getStringOnDisplay() + digit);

         clear = false;
      }     

       public void addDecimalPoint()
      {
         if(clear == true)
         {
            setTextOnOutput("");
         }

         if(getStringOnDisplay().indexOf(".") == -1)
         {
            setTextOnOutput(new String(getStringOnDisplay() + "."));
         }
      }

       public void changeSign()
      {
         if(Double.parseDouble(output.getText()) < 0)
         {
            setTextOnOutput(getStringOnDisplay().substring(1));
         }

         if(Double.parseDouble(output.getText()) > 0)
         {
            setTextOnOutput(Double.toString(getNumberInDisplay() * -1));
         }    
      } 

       public void clearEverythingButOperation()
      {
         setTextOnOutput("0");
         clear = true;      
      }

       public void clearEverything()
      {
         setTextOnOutput("0");
         opera = "0";
         firstNumber = 0;
         clear = true;
      }

       public double getNumberInDisplay()
      {
         String stuff = output.getText();
         return Double.parseDouble(stuff);
      }

       public void operation(String s)
      {      
         double number = getNumberInDisplay();

         if(!(opera.equals("0")))
         {         
            double result = processOperator();
            displayResult(result);
            firstNumber = result;
         }

         else
         {
            firstNumber = number;
         }

         clear = true;
         opera = s;
      }

       public void processEquals()
      {
         double result;

         result = processOperator();
         displayResult(result);

         opera = "0";
      }

       public double processOperator()
      {    
         double answer = 0;
         double number = getNumberInDisplay();

         if(opera.equals("*"))
         {

            answer = firstNumber * number;
         }

         if(opera.equals("-"))
         {
            answer = firstNumber - number;
         }

         if(opera.equals("+"))
         {
            answer = firstNumber + number;
         }

         if(opera.equals("/"))
         {
            answer = firstNumber / number;
         }

         return answer;
      }

       public void displayResult(double result)
      {
         setTextOnOutput(Double.toString(result));
         firstNumber = result;
         clear = true;
      }

       public static void main(String args[])
      {
         Calculator f= new Calculator();
         f.setTitle("Windows Calculator");
         f.setSize(300, 300);
         f.pack();
         f.setVisible(true);
         f.setResizable(false);
      } 
   }
4

2 に答える 2

1

1と2への答え:

おそらくスタックでオペレーターをよりよく追跡するか、履歴を「クリア」するまで必要な情報を保存する必要があります。同様のプログラムを作成するオンラインの例を次に示します。

Java: 例 - シンプルな電卓

コードに必要な変更のいくつかについて、いくつかの詳細を次に示します...

関数の415 行目でprocessEquals()、変数をクリアしoperaます。これにより、等号を 2 回押しても何も起こらないようになります。その行をコメントアウトすると、より適切に機能するはずです。

関数の390 行目で、操作で使用するoperation(String)を取得NumberInTheDisplay()しますが、等号を 2 回クリックすることにした場合に備えて保持しません。この値を保存して、 で使用できるようにする必要がありますprocessEquals()

一般に、トラブルシューティングや機能の追加を行う場合は、現在の動作を決定し、目的の動作を決定して、違いを管理可能なチャンクに分割します。

また、特定の機能と動作の一連の単体テストを作成して、いつ機能していて、いつ機能していないかを知ることができます。

それ以上は、自分でデバッグする必要があります。幸運を。

3 への回答:

GridLayoutでコンポーネントのサイズを設定するには? より良い方法はありますか?

4 への回答:

Java GUIでボタンの背景色を設定するには?

于 2012-06-09T22:26:20.777 に答える
1

コンポーネントのデフォルト フォントを変更するには、UIManager メソッドの使用を試みることができますが、これらはルック アンド フィールに大きく依存する可能性があり、各 L&F では機能しない可能性があることを理解する必要があります。たとえば、JButton のフォントを大きくしたい場合は、次のようにします。

Font btnFont = UIManager.getFont("Button.font");
float fontSize = 16f;
btnFont = btnFont.deriveFont(fontSize);
UIManager.put("Button.font", btnFont);

これは、JButton が作成される前に呼び出す必要があると思います。したがって、これを呼び出す場所の 1 つは、Calculator オブジェクトを作成する前のメイン メソッドであるか、静的初期化ブロック内の別の場所である可能性があります。

于 2012-06-09T22:34:11.740 に答える