本帖最后由 丁一 于 2013-3-22 10:59 编辑
代码贴不全,就不用代码形式了,大神们将就看吧
class TestThread implements Runnable
{
public void run() //
{
for(int j=0;j<50;j++)
{
System.out.println("runing"+j);
}
} //接口方式也必须有run()方法,调用时同样适用start()
}
public class Cs {
public static void main(String [] args)
{
TestThread t =new TestThread();
Thread tt = new Thread(t);// 用这个就出现错误
tt.start();
tt.start();
/*new Thread(t).start();// 用这个就正常,
new Thread(t).start();*/
new Thread(t).start();*/
for (int i=0;i<50;i++)
{
System.out.println("main running"+i);
}
}
} |