欢迎来到天天文库
浏览记录
ID:40556962
大小:38.00 KB
页数:5页
时间:2019-08-04
《java基于awt图形界面程序设计方法实验报告2》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、2011年下学期实验名称:基于awt图形界面程序设计方法时间:2011/12/9地点:8-209一、实验设备:一台计算机。二、实验目的:1.掌握基于awt图形界面程序设计方法2.掌握容器组件和基本组件的应用实验内容及方法:1.设计一个基于awt的图形界面应用程序实现算术运算。实验过程:1.实验步骤1.设计一个基于awt的图形界面应用程序实现算术运算①界面中有三个文本框,分别表示两个运算数和运算结果;②另外界面中有四个按钮,分别表示“加”“减”“乘”“除”;③程序中需要添加四个按钮监听器,且处理不同的运算;⑤运行程序;2.源程序:importjava.awt.*
2、;importjava.applet.*;importjava.awt.event.*;publicclassCalculatorextendsApplet{TextFieldtfAnswer,tf1,tf2;ButtonbPlus,bMinus,bMulti,bDivision;publicvoidinit(){Panelpanel1=newPanel();Panelpanel2=newPanel();tf1=newTextField(8);tf2=newTextField(8);tfAnswer=newTextField(8);setBackground(
3、Color.lightGray);setForeground(Color.blue);bDivision=newButton("/");bDivision.setForeground(Color.red);bMulti=newButton("*");bMulti.setForeground(Color.red);bMinus=newButton("-");bMinus.setForeground(Color.red);bPlus=newButton("+");bPlus.setForeground(Color.red);setLayout(newFlowLay
4、out());panel1.setLayout(newFlowLayout());panel2.setLayout(newGridLayout(1,4));panel1.add(tf1);panel1.add(tf2);panel1.add(tfAnswer);panel2.add(bPlus);panel2.add(bMinus);panel2.add(bMulti);panel2.add(bDivision);add(panel1);add(panel2);bDivision.addActionListener(newButtonAct());bMulti
5、.addActionListener(newButtonAct());bMinus.addActionListener(newButtonAct());bPlus.addActionListener(newButtonAct());}classButtonActimplementsActionListener{publicvoidactionPerformed(ActionEvente){doublea,b,c=1;a=Double.parseDouble(tf1.getText());b=Double.parseDouble(tf2.getText());i
6、f(e.getSource()==bPlus)c=a+b;elseif(e.getSource()==bMinus)c=a-b;elseif(e.getSource()==bMulti)c=a*b;elseif(e.getSource()==bDivision)c=a/b;tfAnswer.setText(Double.toString(c));}}}4.运行截图:
此文档下载收益归作者所有