有一段java程序能够通过编译,但是运行不了,请指教!!
以下一一段程序,能够通过编译,但是无法运行~~!请高手指点错误之处~~!importjava.applet.*;importjava.awt.*;importjava.a...
以下一一段程序,能够通过编译,但是无法运行~~!
请高手指点错误之处~~!
import java.applet.*;import java.awt.*;import java.awt.event.*;
public class example9_3 extends Applet implements ActionListener
{
TextField text1,text2,text3;
policeman police;
public void init()
{
text1=new TextField(10);text2=new TextField(10);text3=new TextField(10);
police=new policeman(this);
add(text1);add(text2);add(text3);
text1.addActionListener(this);text1.addActionListener(police);
}
public void actionPerformed(ActionEvent e)
{
String a1=e.getActionCommand();
int c=Integer.parseInt(a1);
int b=c*c;text2.setText(c+"的平方是:"+b);
}
}
class policeman implements ActionListener
{
example9_3 a=null;
policeman(example9_3 a)
{
this.a=a;
}
public void actiontPerformed(ActionEvent e)
{
String s=e.getActionCommand();
int c=Integer.parseInt(s);
int b=c*c*c;a.text3.setText(c+"的立方是:"+b);
}
}
actionPerformed(ActionEvent e)不就是ActionListener接口的方法吗?而且他只有一个啊~~~!
请问要实现全部接口应该怎么办呢?我是初学者,请指教~~拍手笑清风先生! 展开
请高手指点错误之处~~!
import java.applet.*;import java.awt.*;import java.awt.event.*;
public class example9_3 extends Applet implements ActionListener
{
TextField text1,text2,text3;
policeman police;
public void init()
{
text1=new TextField(10);text2=new TextField(10);text3=new TextField(10);
police=new policeman(this);
add(text1);add(text2);add(text3);
text1.addActionListener(this);text1.addActionListener(police);
}
public void actionPerformed(ActionEvent e)
{
String a1=e.getActionCommand();
int c=Integer.parseInt(a1);
int b=c*c;text2.setText(c+"的平方是:"+b);
}
}
class policeman implements ActionListener
{
example9_3 a=null;
policeman(example9_3 a)
{
this.a=a;
}
public void actiontPerformed(ActionEvent e)
{
String s=e.getActionCommand();
int c=Integer.parseInt(s);
int b=c*c*c;a.text3.setText(c+"的立方是:"+b);
}
}
actionPerformed(ActionEvent e)不就是ActionListener接口的方法吗?而且他只有一个啊~~~!
请问要实现全部接口应该怎么办呢?我是初学者,请指教~~拍手笑清风先生! 展开
4个回答
展开全部
楼上正解~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就这一个类吗 我怎么没有看到main方法呢
没有main方法怎么运行啊
没有main方法怎么运行啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
玫瑰刺心啊, 这可是applet.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询