Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
打印话题 寄给朋友 订阅主题 |
话题被移动 | ||||
该话题已被移动 - why , 2007-05-13 04:51 如果您尚不清楚该话题被移动的原因,请参考论坛规则以及本版公告或者联系本版版主。 |
作者 | 能看懂的进来帮调试一下错误(我是新手) |
kkkrnm
发贴: 4 积分: 0 |
于 2007-05-09 08:05
程序: import java.awt.*; import java.applet.*; import java.awt.event.*; public class Example1 extends Applet implements ActionListener{ TextField tf1; TextField tf2; TextField tf3; Button bt1; Button bt2; Button bt3; Button bt4; public void init(){ tf1=new TextField("输入一个数字",10); tf2=new TextField("输入一个数字",10); tf3=new TextField("10"); bt1=new Button("加"); bt2=new Button("减"); bt3=new Button("乘"); bt4=new Button("除"); add(tf1); add(tf2); add(tf3); add(bt1); add(bt2); add(bt3); add(bt4); bt1.addActionListener(this); bt2.addActionListener(this); bt3.addActionListener(this); bt4.addActionListener(this); } public void actionperformed(ActionEvent e){ float count,i,j; if(e.getSource()==bt1){ count=i+j; } if(e.getSource()==bt2){ count=i-j; } if(e.getSource()==bt3){ count=i*j; } if(e.getSource()==bt4){ count=i/j; } tf3.setText(""+count); } } 错误:class Example1 is public ,should be declared in a file named Example1.java 本人是新手。如果程序上有什么大的错误,希望会的人帮忙解决一下。感激不尽~ JAVA学习日子分享 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
7117 | 能看懂的进来帮调试一下错误(我是新手) | kkkrnm | 1129 | 2007-05-09 08:05 |
5934 | Re:能看懂的进来帮调试一下错误(我是新手) | aaarong | 1794 | 2007-05-13 18:11 |
5786 | Re:能看懂的进来帮调试一下错误(我是新手) | kkkrnm | 14 | 2007-05-15 20:37 |
5790 | Re:能看懂的进来帮调试一下错误(我是新手) | kkkrnm | 84 | 2007-05-15 20:42 |
5932 | Re:能看懂的进来帮调试一下错误(我是新手) | zcjl | 108 | 2007-05-15 21:46 |
6117 | Re:能看懂的进来帮调试一下错误(我是新手) | aaarong | 98 | 2007-05-16 12:32 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |