| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 893 人关注过本帖
标题:编译通过,运行时出问题
取消只看楼主 加入收藏
zzsy04et138
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2006-10-18
收藏
 问题点数:0 回复次数:4 
编译通过,运行时出问题

/**
* @(#)CalculatorFrame.java
*
* JFC Calculator application
*
* @author
* @version 1.00 2007/8/28
*/

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


public class CalculatorFrame extends JFrame implements ActionListener{

/**
* The constructor
*/
JTextField jtf = new JTextField();
public CalculatorFrame() {
this.setDefaultCloseOperation(JFrame.ERROR);
Container c = this.getContentPane();

JPanel jp1 = new JPanel();
c.add(jtf,BorderLayout.NORTH);
c.add(jp1,BorderLayout.CENTER);

jp1.setLayout(new GridLayout(4,4));

JButton b = null;
b = new JButton("1");
b.addActionListener(this);
jp1.add(b);

b = new JButton("2");
b.addActionListener(this);
jp1.add(b);

b = new JButton("3");
b.addActionListener(this);
jp1.add(b);

b = new JButton("+");
b.addActionListener(this);
jp1.add(b);

b = new JButton("4");
b.addActionListener(this);
jp1.add(b);

b = new JButton("5");
b.addActionListener(this);
jp1.add(b);

b = new JButton("6");
b.addActionListener(this);
jp1.add(b);

b = new JButton("-");
b.addActionListener(this);
jp1.add(b);

b = new JButton("7");
b.addActionListener(this);
jp1.add(b);

b = new JButton("8");
b.addActionListener(this);
jp1.add(b);

b = new JButton("9");
b.addActionListener(this);
jp1.add(b);

b = new JButton("*");
b.addActionListener(this);
jp1.add(b);

b = new JButton("0");
b.addActionListener(this);
jp1.add(b);

b = new JButton(".");
b.addActionListener(this);
jp1.add(b);

b = new JButton("=");
b.addActionListener(this);
jp1.add(b);

b = new JButton("\\");
b.addActionListener(this);
jp1.add(b);


JMenuBar menuBar = new JMenuBar();
JMenu menuFile = new JMenu();
JMenuItem menuFileExit = new JMenuItem();

menuFile.setText("File");
menuFileExit.setText("Exit");

// Add action listener.for the menu button
menuFileExit.addActionListener
(
new ActionListener() {
public void actionPerformed(ActionEvent e) {

// CalculatorFrame.this.windowClosed();
jtf.setText(jtf.getText() + e.getActionCommand());
}
}
);
menuFile.add(menuFileExit);
menuBar.add(menuFile);

setTitle("Calculator");
setJMenuBar(menuBar);
setSize(new Dimension(400, 400));

// Add window listener.
this.addWindowListener
(
new WindowAdapter() {
public void windowClosing(WindowEvent e) {
CalculatorFrame.this.windowClosed();
}
}
);
}


/**
* Shutdown procedure when run as an application.
*/
protected void windowClosed() {

// TODO: Check if it is safe to close the application

// Exit application.
System.exit(0);
}

/**
* Method actionPerformed
*
*
* @param e
*
*/
public void actionPerformed(ActionEvent e) {
// TODO: Add your code here
}
}



我用的是JFC打开的.在JCreator中.谢谢啊.运行结果是:


--------------------Configuration: Calculator - j2sdk1.4.2 <Default> - <Default>--------------------
java.lang.IllegalArgumentException: defaultCloseOperation must be one of: DO_NOTHING_ON_CLOSE, HIDE_ON_CLOSE, DISPOSE_ON_CLOSE, or EXIT_ON_CLOSE
at javax.swing.JFrame.setDefaultCloseOperation(JFrame.java:357)
at CalculatorFrame.<init>(CalculatorFrame.java:23)
at Calculator.main(Calculator.java:15)
Exception in thread "main"

搜索更多相关主题的帖子: 编译 运行 
2007-08-28 11:43
zzsy04et138
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2006-10-18
收藏
得分:0 
好象看不是很懂哦,能不能再讲讲,谢谢哈.

2007-08-28 15:33
zzsy04et138
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2006-10-18
收藏
得分:0 
终于看见了,谢谢2楼,4楼,5楼的,谢谢拉.现在终于可以了.

2007-08-28 15:53
zzsy04et138
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2006-10-18
收藏
得分:0 
好象数字不能在文本框里显示,能不能在帮我看一下啊.

2007-08-28 16:54
zzsy04et138
Rank: 1
等 级:新手上路
帖 子:113
专家分:0
注 册:2006-10-18
收藏
得分:0 
呵呵,谢谢哈,现在可以了.
还请问能不能教教我要把结果计算出来,代码要怎么改.

2007-08-30 11:04
快速回复:编译通过,运行时出问题
数据加载中...
 
   



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

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