- 1、本文档共10页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA中用GUI编程
JAVA中用GUI编程实现计算器模拟
摘 要对计算器程序进行需求分析、概要设计、详细设计,最后使用Java编程实现的全过程。设计GUI界面的计算器用户可以通过鼠标依次输入参加计算的数值,进行加、减、乘、除关键词:GridLayout(网格布局)对数字控件和操作按钮进行布局。此外,单击任何一个按钮都会触发ActionEvent事件,要处理这些事件就必须实现ActionListener接口的actionPerformed方法。
二.程序代码如下
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
//变量设置如下
//继承JFrame类并实现ActionListenter接口
public class calculator extends JFrame implements ActionListener
{
JFrame frame;
//数字及操作按钮
JButton num0,num1,num2,num3,num4,num5,num6,num7,num8,num9,Back,c;
//运算按钮
JButton plusButton,minusButton,multiplyButton,divideButton,residueButton,equalButton,changeButton,dotButton,sqrtButton,reciprocalButton;
JMenu fileM;
JMenuItem exitM,helpM;
JTextField text;
//状态变量
boolean clicked=true;
boolean clear=true;
int all=0;
double previous;
String fuhao;
int first=1;
//界面设计
public calculator(){
setTitle(计算器);
setSize(300,250);
setLocation(400,400);
text=new JTextField(25);
text.setHorizontalAlignment(JTextField.LEFT);
JPanel cp1=new JPanel();
JPanel cp2=new JPanel();
JPanel cp3=new JPanel();
//设置整体布局
getContentPane().add(cp1,North);
getContentPane().add(cp2,Center);
getContentPane().add(cp3,South);
cp1.setLayout(new GridLayout(1,1));
cp2.setLayout(new GridLayout(1,2));
cp3.setLayout(new GridLayout(5,4));
plusButton=new JButton(+);//加
minusButton=new JButton(-);//减
multiplyButton=new JButton(*);//乘
divideButton=new JButton(/);//除
residueButton=new JButton(%);//余数
equalButton=new JButton(=);//等号
changeButton=new JButton(+/-);//正负号切换
dotButton=new JButton(.);//小数点
sqrtButton=new JButton(sqrt);//开方
reciprocalButton=new JButton(1/x);//倒数
//数字按钮
num0=new JButton(0);
num1=new JButton(1);
num2=new JButton(2);
num3=new JButton(3);
num4=new JButton(4);
num5=new JButton(5);
num6=new JButton(6);
num7=new JButton(7);
num8=new JButton(8);
num9=new JButton(9);
cp1.add(text);
text.setEditable(false);
text.setBackground(Color.white);
//监听设置
Back=new JButton(Back);
Back.addActionListener(this);
c=new JBut
您可能关注的文档
- GSMR数字移动通信网设备测试规范 第四部分 手持终端.doc
- GSMR光纤直放站培训资料.ppt
- GZ系列工频高压试验装置.doc
- G商业银行客户经理绩效管理.doc
- HANDBOOK INTERNATIONAL MASTER’S PROGRAM IN ENVIRONMENTAL MANAGEMENT AND SUSTAINABLE DEVELOPMENT.doc
- GPS软件接收机信号实时接收与传输技术.doc
- HAY合益集团的绩效管理培训讲义.ppt
- HDPE管道焊接技术培训方案.ppt
- HP全面存储解决方案-精品完整版.doc
- HP小型机安装于配置.doc
- 2023年江苏省镇江市润州区中考生物二模试卷+答案解析.pdf
- 2023年江苏省徐州市邳州市运河中学中考生物二模试卷+答案解析.pdf
- 2023年江苏省苏州市吴中区中考冲刺数学模拟预测卷+答案解析.pdf
- 2023年江苏省南通市崇川区田家炳中学中考数学四模试卷+答案解析.pdf
- 2023年江西省吉安市中考物理模拟试卷(一)+答案解析.pdf
- 2023年江苏省泰州市海陵区九年级(下)中考三模数学试卷+答案解析.pdf
- 2023年江苏省苏州市高新二中中考数学二模试卷+答案解析.pdf
- 2023年江苏省南通市九年级数学中考复习模拟卷+答案解析.pdf
- 2023年江苏省南通市海安市九年级数学模拟卷+答案解析.pdf
- 2023年江苏省泰州市靖江外国语学校中考数学一调试卷+答案解析.pdf
文档评论(0)