黑马程序员技术交流社区

标题: 有关于GUI中事件监听的问题 [打印本页]

作者: 通行天下    时间: 2013-4-5 14:33
标题: 有关于GUI中事件监听的问题
本帖最后由 通行天下 于 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));
        }
}
作者: 通行天下    时间: 2013-4-5 14:35
黄色的代码中为什么用变量tf 不对啊?该用什么啊??求解!!!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2