| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 511 人关注过本帖
标题:[求助]设计简单的计算器程序
只看楼主 加入收藏
modelmomo
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2006-10-22
收藏
 问题点数:0 回复次数:2 
[求助]设计简单的计算器程序
设计简单的计算器程序
搜索更多相关主题的帖子: 计算器 设计 
2006-12-25 21:31
Eastsun
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:32
帖 子:802
专家分:0
注 册:2006-12-14
收藏
得分:0 

给你来个现成的吧,不是偶写的,CoreJava上的例子:

程序代码:

/**
@version 1.32 2004-05-05
@author Cay Horstmann
*/

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

public class Calculator
{
public static void main(String[] args)
{
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();
}
}

/**
A panel with calculator buttons and a result display.
*/
class CalculatorPanel extends JPanel
{
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();

// add the buttons in a 4 x 4 grid

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);
}

/**
Adds a button to the center panel.
@param label the button label
@param listener the button listener
*/
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);
}

private JButton display;
private JPanel panel;
private double result;
private String lastCommand;
private boolean start;
}




My BlogClick Me
2006-12-25 21:48
modelmomo
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2006-10-22
收藏
得分:0 
谢谢啦。
2006-12-25 21:55
快速回复:[求助]设计简单的计算器程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023713 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved