当前位置: 代码迷 >> Java相关 >> 关于Integer.parseInt()的问题,求高手指点
  详细解决方案

关于Integer.parseInt()的问题,求高手指点

热度:688   发布时间:2011-04-08 14:36:52.0
关于Integer.parseInt()的问题,求高手指点
程序代码:
import java.awt.*;
import java.awt.event.*;

class YourWindow extends Frame implements ActionListener
{
    TextField text1,text2;
    PoliceMan police;
    YourWindow()
    {
        text1 = new TextField(10);
        text2 = new TextField(10);
        police = new PoliceMan();
        setLayout(new FlowLayout());
        add(text1);
        add(text2);
        text1.addActionListener(this);
        text1.addActionListener(police);
        setBounds(100,100,150,150);
        setVisible(true);
        validate();
    }
   
    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
{
    public void actionPerformed (ActionEvent e)
    {
        String number = e.getActionCommand();
        int n = Integer.parseInt(number);
        int m =n*n;
        System.out.println(n+"的立方是"+m);
    }
}

public class Example7_4
{
    public static void main(String args[])
    {
        YourWindow win = new YourWindow();
    }
}


程序运行时总是提示
在俩个Integer.parseInt处
找不到符号

求高手指点哪地方出错了

谢谢

[ 本帖最后由 tomliu05 于 2011-4-8 14:38 编辑 ]
搜索更多相关的解决方案: police  

----------------解决方案--------------------------------------------------------
我这都没提示出错。。。。
----------------解决方案--------------------------------------------------------
提示: 作者被禁止或删除 内容自动屏蔽
2011-04-08 09:19:56
洛云

等 级:职业侠客
帖 子:204
专家分:356
注 册:2010-2-3
  得分:5 

楼主的错觉?
----------------解决方案--------------------------------------------------------
文件夹的问题,我放在别的文件夹下就可以用了
具体的我也不太清楚。。。
总之谢谢给位
----------------解决方案--------------------------------------------------------
  相关解决方案