Topic: 大家看看这个程序哪错了 ?(关于applet的问题) |
Print this page |
1.大家看看这个程序哪错了 ?(关于applet的问题) | Copy to clipboard |
Posted by: yqt Posted on: 2005-09-02 11:42 import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JApplet; import javax.swing.JLabel; import javax.swing.JTextField; public class ceishiApplet extends JApplet implements ActionListener { JLabel label1,label2,label3; JTextField text1,text2,text3; public void init(){ label1=new JLabel("请输入长度"); text1=new JTextField(10); label2=new JLabel("请输入宽度"); text2=new JTextField(10); label3=new JLabel("面积"); text3=new JTextField(); getContentPane().add(label1); getContentPane().add(label2); getContentPane().add(label3); getContentPane().add(text1); getContentPane().add(text2); getContentPane().add(text3); text3.setEditable(false); text2.addActionListener(this); } public void actionPerformed(ActionEvent e) { int c; if (e.getSource()==text2){ int a, b; a=Integer.parseInt(text1.getText()); b=Integer.parseInt(text2.getText()); c=a*b; text3.setText(String.valueOf(c)); } } } 运行之后提示错误 ?? 大家帮忙给看看阿 ?? |
2.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: why Posted on: 2005-09-06 00:31 閣下怎樣运行 提示甚麼錯誤 |
3.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: q_yuan Posted on: 2005-09-06 08:20 你给label1,label2,label3; text1,text2,text3;设置一下位置看可以不?setBounds(int,int,int,int) |
4.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: 雪代缘 Posted on: 2005-09-15 09:51 那些符号怎么老是干扰程序呢:( |
5.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: 雪代缘] | Copy to clipboard |
Posted by: why Posted on: 2005-09-15 10:31 雪代缘 wrote: On the edit page, check "Disable Smileys" to get rid of them. |
6.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: chair Posted on: 2005-09-16 21:47 text3.setText(String.valueOf(c));少了一个C |
7.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: why Posted on: 2005-09-16 22:29 > e.getSource()==text2 equals !, not == |
8.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: st_orange Posted on: 2005-09-23 00:26 用实现FocusListener接口 来试试?? |
9.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: yezongbo Posted on: 2005-09-23 10:18 我编译的时候怎么没有错误啊 |
10.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: naive Posted on: 2005-09-23 15:13 是不是 你的集成编译器的问题 编译没问题吧 |
11.Re:大家看看这个程序哪错了 ?(关于applet的问题) [Re: yqt] | Copy to clipboard |
Posted by: naive Posted on: 2005-09-23 15:50 Jbuilder有些旧版本能过的程序新版本 会有问题 |
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 |