河南成教 / Java程序设计
[填空题] 下面程序产生一个窗口,1秒后自动关闭。
public class Class3104 implements Runnable
{
{
try
{
Thread.sleep(1000);
}
catch(InterruptedException e){}
System.exit(0);
}
public Class3104()
{
JFrame my=new JFrame();
my.setBounds(100,100,600,300);
my.setVisible(true);
}
public static void main(String[] args)
{
Class3104 t=new Class3104();
Thread tt=;
tt.start();
}
}
public class Class3104 implements Runnable
{
{
try
{
Thread.sleep(1000);
}
catch(InterruptedException e){}
System.exit(0);
}
public Class3104()
{
JFrame my=new JFrame();
my.setBounds(100,100,600,300);
my.setVisible(true);
}
public static void main(String[] args)
{
Class3104 t=new Class3104();
Thread tt=;
tt.start();
}
}
参考答案:
佳题速递: