服务器之家

服务器之家 > 正文

java 简单的计算器程序实例代码

时间:2020-11-23 13:00     来源/作者:Allenalex

java 简单的计算器程序

实现实例:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
 
 
public class Calculator
{
  public static void main(String[] args)
  {
   EventQueue.invokeLater(new Runnable()
     {
      public void run()
      {
        CalculatorFrame frame = new CalculatorFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
      }
     });
  }
}
 
 
/**
 * A frame with a calculator panel.
 */
class CalculatorFrame extends JFrame
{
  public CalculatorFrame()
  {
    setTitle("Calculator");
    CalculatorPanel panel=new CalculatorPanel();
    add(panel);
    pack();
  }
}
 
 
class CalculatorPanel extends JPanel
{
  private JButton display;
    private JPanel panel;
    private double result;
    private String lastCommand;
    private boolean start;
  public CalculatorPanel()
  {
    setLayout(new BorderLayout());
     
    result=0;
    lastCommand="=";
    start=true;
     
     // add the display
    display=new JButton("0");
    display.setEnabled(false);
    add(display,BorderLayout.NORTH);
     
    ActionListener insert=new InsertAction();
    ActionListener command=new CommandAction();
     
    panel=new JPanel();
    panel.setLayout(new GridLayout(4,4));
     
     addButton("7", insert);
     addButton("8", insert);
     addButton("9", insert);
     addButton("/", command);
 
 
     addButton("4", insert);
     addButton("5", insert);
     addButton("6", insert);
     addButton("*", command);
 
 
     addButton("1", insert);
     addButton("2", insert);
     addButton("3", insert);
     addButton("-", command);
 
 
     addButton("0", insert);
     addButton(".", insert);
     addButton("=", command);
     addButton("+", command);
 
 
     add(panel, BorderLayout.CENTER);
     
    }
  private void addButton(String label,ActionListener listener)
  {
    JButton button=new JButton(label);
    button.addActionListener(listener);
    panel.add(button);
  }
  /**
    * This action inserts the button action string to the end of the display text.
    */
  private class InsertAction implements ActionListener
  {
    public void actionPerformed(ActionEvent event)
    {
      String input=event.getActionCommand();
      if(start)
      {
        display.setText("");
        start=false;
      }
      display.setText(display.getText()+input);
    }
  }
   /**
    * This action executes the command that the button action string denotes.
    */
  private class CommandAction implements ActionListener
  {
    public void actionPerformed(ActionEvent event)
    {
      String command=event.getActionCommand();
      if(start)
      {
        if (command.equals("-"))
        {
          display.setText(command);
          start = false;
        }
        else lastCommand = command;
      }else {
        calculate(Double.parseDouble(display.getText()));
        lastCommand=command;
        start=true;
      }
    }
  }
  /**
    * Carries out the pending calculation.
    * @param x the value to be accumulated with the prior result.
    */
  public void calculate(double x)
  {
     if (lastCommand.equals("+")) result += x;
     else if (lastCommand.equals("-")) result -= x;
     else if (lastCommand.equals("*")) result *= x;
     else if (lastCommand.equals("/")) result /= x;
     else if (lastCommand.equals("=")) result = x;
     display.setText("" + result);
  }
}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/Allenalex/article/details/10211657

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部