站内搜索: 请输入搜索关键词

当前页面: 开发资料首页J2SE 专题求助,一个简单的计算器程序 但是不能显示结果

求助,一个简单的计算器程序 但是不能显示结果

摘要: 求助,一个简单的计算器程序 但是不能显示结果


一个计算器的问题:
我编写了一个计算器的程序,在编译的时候没有什么错误 但是在运行的时候却没有内容 只有标题栏 连TITLE也没有!晕!希望大家帮我看看啊!谢谢了
程序:
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.show();
}
}

/**
* A frame with a calculator panel
*/
class CalculatorFrame extends JFrame
{
public CalculatorFrame()
{
setTitle("Calculator");

Container contentPane = getContentPane();
CalculatorPanel panel = new CalculatorPanel();
contenPane.add(panel);
pack();
}
}


/**
*A panel with buttons and a result display
*/
class CalculatorPanel extends JPanel
{
public CalculatorPanel()
{
setLayout(new BorderLayout());

result = 0;
lastCommand = "=";
start = true;

// add the display

display= new JLabel("0");
add(display,BorderLayout.NORTH);

ActionListener insert = new InsertAction();
ActionListener command = new CommandAction();

//add the buttons in 4X4 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 evt)
{
String command = evt.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 JLabel display;
private JPanel panel;
private double result;
private String lastCommand;
private boolean start;
}



你的程序没有问题啊,我这里运行完全正常啊。

唯一的就是
Container contentPane = getContentPane();
CalculatorPanel panel = new CalculatorPanel();
contenPane.add(panel);


这里你有一个拼写错误,应该是contentPane.add(panel);


用编译工具了吗?推荐搂主用编译工具,这样就很容易发现问题。顺便说一下我用JB2006


我想问下 我用了用的是JCreator 但是在我这边还是看不到结果啊
是不是我什么地方没有弄对啊 晕!大家没有碰到这种情况吗?

就是不出界面!!!!!!!!我要死掉了


我用的也是JCreator,试了你的代码,正如{imA(男的不会,会的不男)}所说的那样,有一点拼写错误,修改了就可以运行了,界面也显示了.


↑返回目录
前一篇: [110分]求javascript实现的类似java.net.URLEncoder.encode(String s) 的方法
后一篇: 输出格式(控制输出小数位数,对齐)