java计算器小数点

时间:2014-01-19 09:33:30

标签: java awt decimal calculator point

我使用java完全正常工作。可以告诉我如何添加小数点。我已经有了按钮,变量是double类型。我只是不能使按钮工作。 我试着自己做,但每次都会收到错误消息。 这是代码:

package oop;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class Kalkulator2 extends Applet {
String arg1= "", arg2="";
double ergebnis;
Button zahl[] =new Button[10];
Button funktion[] = new Button[4];
Button ausfuehren;
Button decimalpoint;
char dec='.';
Panel zahlPanel,funktionPanel,ergebnisPanel;
TextField ergebnisFeld = new TextField(5);
int operationArgument;
char operation;
public void init () {
    operationArgument= 1; operation =' ';
    setLayout(new BorderLayout());
    zahlPanel = new Panel();
    zahlPanel.setLayout(new GridLayout (4,3));
    for (int i=9; i>=0; i--) {
        zahl[i] = new Button(String.valueOf(i));
        zahl[i].addActionListener(new ButtonZahlen());
        zahlPanel.add(zahl[i]);
    }
    decimalpoint = new Button(String.valueOf(dec));   //decimal point

    //decimalpoint.addActionListener(new Button ());
    ausfuehren = new Button("=");
    ausfuehren.addActionListener(new ButtonAusfuehren()); //zu dem Listener
    zahlPanel.add(decimalpoint);
    zahlPanel.add(ausfuehren);

    add("Center",zahlPanel);
    funktionPanel = new Panel();
    funktionPanel.setLayout(new GridLayout(4,1));
    funktion[0] = new Button("+");
    funktion[0].addActionListener(new ButtonOperation());
    funktionPanel.add(funktion[0]);
    funktion[1] = new Button("-");
    funktion[1].addActionListener(new ButtonOperation());
    funktionPanel.add(funktion[1]);
    funktion[2] = new Button("*");
    funktion[2].addActionListener (new ButtonOperation());
    funktionPanel.add(funktion[2]);
    funktion[3] = new Button("/");
    funktion[3].addActionListener (new ButtonOperation());
    funktionPanel.add(funktion[3]);



    add("East",funktionPanel);
    ergebnisPanel = new Panel();

    ergebnisPanel.add(ergebnisFeld);
    add("North",ergebnisPanel);

}
class ButtonZahlen implements ActionListener{
    public void actionPerformed(ActionEvent e) {
        switch (operationArgument)   {
        case 1 :  {
            arg1+=e.getActionCommand();
            ergebnisFeld.setText(arg1);
            break;
        }
        case 2 :   {
            arg2 +=e.getActionCommand();
            ergebnisFeld.setText(arg2);
            break;
        }
        default: { }

        }
        }
    }
class ButtonAusfuehren implements ActionListener {
    public void actionPerformed(ActionEvent e) {
        if(operation =='+')
                ergebnis = new Double(arg1) + new Double(arg2);
        else if (operation == '-') 
            ergebnis = new Double(arg1) - new Double(arg2);



        else if(operation =='*') 
                ergebnis = new Double(arg1) * new Double(arg2);

        else if(operation =='/')
                ergebnis = new Double(arg1) / new Double(arg2);

        ergebnisFeld.setText(String.valueOf(ergebnis));


        }


    }


class ButtonOperation implements ActionListener{
    public void actionPerformed(ActionEvent e) {
        if(e.getActionCommand().equals("+")) {
            operation = '+'; operationArgument = 2;
            }
        else if(e.getActionCommand().equals("-")) {
                operation = '-'; operationArgument = 2;
                }
        else if(e.getActionCommand().equals("*")) {
                    operation = '*' ; operationArgument =2;
                    }
        else if(e.getActionCommand().equals("/")) {
                        operation = '/' ; operationArgument =2;
        }
                    }

            }
        }


public void paint(Graphics g){   }


}

3 个答案:

答案 0 :(得分:2)

单击该按钮时,它正在尝试创建一个未实现actionListener的新按钮对象。因此,当我需要一个带有'actionPerformed'方法的对象时,它会抛出错误“我必须用新按钮做什么”这是一个可能的解决方案;

// create button object
decimalpoint = new Button(".");

// not good : decimalpoint.addActionListener(new Button ());
// event on click
decimalpoint.addActionListener(new YourClassName());

YourClassName是处理按钮事件的实例

class YourClassName implements ActionListener {
    public void actionPerformed(ActionEvent e) {
        // add decimal point
    }
}

我同意Andrew Thompson的观点,即AWT不是处理任务的首选方式。如果您的老师建议您使用AWT,请使用Swing。 Swing远比AWT好得多,应该教给那些第一次编写基于GUI的java的人。

答案 1 :(得分:0)

要回答这个问题,要在Java代码中添加DECIMAL POINT(我的示例是GUI NetBeans IDE 8.0.2),我偶然发现了这段代码。我必须承认,我在网上寻找答案时没有遇到过这段代码。

 private void PointActionPerformed(java.awt.event.ActionEvent evt) {                                      

      txtDisplay.setText(txtDisplay.getText()+Point.getText()); 
}

答案 2 :(得分:0)

你可以做到这一点

指定按钮 -

Button Decimal;

将您在xml文件中指定的按钮压缩为(按钮)十进制 -

Decimal = findViewById(R.id.the id you gave to the button);

现在设置点击监听器

Decimal.setOnClickListener(new View.OnClickListener() {
             @Override
             public void onClick(View v) {

             edit.setText(edit.getText().toString() + ".");
}

其中edit是您希望填充文本的字段。