| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 468 人关注过本帖
标题:各位大侠 麻烦各位帮忙解答一个问题
取消只看楼主 加入收藏
美丽人生tete
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-4-11
收藏
 问题点数:0 回复次数:0 
各位大侠 麻烦各位帮忙解答一个问题
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class E9_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); //这个this是什么意思?
add(text1);add(text2);add(text3);
text1.addActionListener(this);
text1.addActionListener(police);
}
public void actionPerformed(ActionEvent e)
{
String number=e.getActionCommand();
int n=Integer.parseInt(number);
int m=n*n;
text2.setText(n+"的平方是:"+m);
}
}
class PoliceMan implements ActionListener
{
E9_3 a=null; //从这里往下面这个a是干什么的?
PoliceMan(E9_3 a)
{
this.a=a;
}
public void actionPerformed(ActionEvent e)
{
String number=e.getActionCommand();
int n=Integer.parseInt(number);
int m=n*n*n;
a.text3.setText(n+"的立方是:"+m); //这个a是什么意思
}
}
我还是个菜鸟,请各位多多指教。
搜索更多相关主题的帖子: 麻烦 解答 
2007-04-11 10:59
快速回复:各位大侠 麻烦各位帮忙解答一个问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.041555 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved