A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

通行天下

中级黑马

  • 黑马币:1

  • 帖子:147

  • 精华:0

© 通行天下 中级黑马   /  2013-4-5 14:33  /  1263 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 通行天下 于 2013-4-5 14:39 编辑

import java.awt.*;
import java.awt.event.*;

public class TestMath {
        public static void main(String[] args) {
                new TFFrame1().launchFrame();               
        }
}

class TFFrame1 extends Frame {
        TextField num1,num2,num3;//必须定义成成员变量
        public void launchFrame() {
                num1 = new TextField(8);
                num2 = new TextField(8);
                num3 = new TextField(10);
                Label l = new Label("+");
                Button b = new Button("=");
                b.addActionListener(new MyMonitor(tf));      这里用变量tf咋不对啊?该用什么啊?
                setLayout(new FlowLayout());
                add(num1);add(l);add(num2);add(b);add(num3);
                pack();
                setVisible(true);
        }
}

class MyMonitor implements ActionListener {
        TFFrame1 tf = null;
        MyMonitor(TFFrame1 tf) {
                this.tf = tf;
        }

        public void actionPerformed(ActionEvent e) {
                int n1 = Integer.parseInt(tf.num1.getText());
                int n2 = Integer.parseInt(tf.num2.getText());
                tf.num3.setText(""+(n1+n2));
        }
}

1 个回复

倒序浏览
黄色的代码中为什么用变量tf 不对啊?该用什么啊??求解!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马