本帖最后由 殷婷婷 于 2013-7-12 18:51 编辑
class Deno extends Thread
{
public void run()
{
for(int x=0;x<100;x++)
System.out.println("Thread"+ x );
}
}
class Tdemo
{
public static void main(String[] args)
{
Deno tf = new Deno();
tf.start();
for(int x=0;x<100;x++)
System.out.println("Hello World!");
}
}
在这个程序中,我把文件保存成Tdemo就可以正常运行,但是保存成其他的如Demo就有异常提示,这是为什么呢?
|