标题:[求助]这个程序哪里出错了,怎么没反应
取消只看楼主
阅逡
Rank: 1
等 级:新手上路
帖 子:103
专家分:0
注 册:2006-12-1
 问题点数:0 回复次数:0 
[求助]这个程序哪里出错了,怎么没反应

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

import java.awt.event.*;


public class GoodLuck extends JFrame implements ActionListener,Runnable
{
static JTextField jf = new JTextField(20);
JButton jb1=new JButton("抽奖");
JButton jb2=new JButton("停止");
JPanel jp=new JPanel();

public GoodLuck()
{
Container con=getContentPane();

jb1.addActionListener(this);
jb2.addActionListener(this);

jb1.setActionCommand("start");

jp.add(jb1);
jp.add(jb2);

con.add(jf,"North");
con.add(jp,"South");

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(300,200,400,400);
setVisible(true);

}

public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand().equals("start"))
{
Thread t=new Thread();
t.start();
}

}

public static void main(String arg[])
{
new GoodLuck();
}

public void run()
{
for(int i=0;i<10;i++)
{

int num=(int)(Math.random()*36)+1;
if(num<10)
jf.setText("0"+num);
else
jf.setText(""+num);
try
{
Thread.sleep(1000);
}
catch(InterruptedException ex)
{

}

}


}



}

搜索更多相关主题的帖子: import public 抽奖 
2007-05-22 01:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-141361-1-1.html




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

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