免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2004 | 回复: 0
打印 上一主题 下一主题

初学者,为什么按钮不能触发? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-10-15 01:22 |只看该作者 |倒序浏览
本帖最后由 yyangh 于 2010-10-15 01:25 编辑

为什么按按钮没有反应的呢?
代码是这样的:

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;



public class Mumber  extends Applet
{
        static JTextArea startn, endn,keyn , result;
        static JButton button;
        look k = new look();
         public void init()
         {
                this.setSize(800,600);
                                 
                 JPanel window = new JPanel();
                 
                 JLabel title = new JLabel("计算起始数到终止数是因子倍数的数");
                 JLabel slabel = new JLabel("开始数");
                 JLabel elabel = new JLabel("结束数");
                 JLabel klabel = new JLabel("因子");
                 JLabel rlabel = new JLabel("计算结果");
                 
                 JTextArea startn = new JTextArea();
                 JTextArea endn = new JTextArea();
                 JTextArea keyn = new JTextArea();
                 JTextArea result = new JTextArea();
                 result.setText("teset");
                 
                 JButton button = new JButton("开始计算");
                 
                 window.setLayout(new GridLayout(20,15));
                 
                 
                 
                 window.add(title);
                 
                                 
                 window.add(new JLabel());
                 window.add(slabel);window.add(startn);
                 window.add(new JLabel());
                 window.add(elabel);
                 window.add(new JLabel());
                 window.add(endn);
                 window.add(klabel);
                 window.add(keyn);
                 window.add(new JLabel());
                 
                 window.add(rlabel); window.add(result);
                 window.add(button);
                 add(window,BorderLayout.CENTER);
                 setVisible(true);
                 button.addActionListener(k);
                 
         }
}

class look implements ActionListener
{
        public void actionPerformed(ActionEvent e)
        {
                if(e.getSource() == Mumber.button)
                {
                        if(Mumber.startn.getText() == null  || Mumber.endn.getText() == null || Mumber.keyn.getText() ==null )
                        {
                                Mumber.result.setText("输入数不能为空!");
                        }
                        else
                        {
                                int start = Integer.parseInt(Mumber.startn.getText());
                                int end = Integer.parseInt(Mumber.endn.getText());
                                int key = Integer.parseInt(Mumber.keyn.getText());
                                for(int s=start;s<end;s++)
                                {
                                        if(s%key == 0)
                                        {
                                                Mumber.result.append(String.valueOf(s));
                                                Mumber.result.append(" ");
                                        }
                                }
                        }
                }
        }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP