关于java多线程sleep的一个问题
publicclassgp28{publicstaticvoidmain(Stringargs[]){inti;testp=newtest();Threads=newTh...
public class gp28
{
public static void main (String args[])
{
int i;
test p=new test();
Thread s=new Thread (p);
s.start();
for(i=0;i<100;i++)
{
try
{
sleep(2000);
}
catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println("main thread:"+i);
}
}
}
class test implements Runnable
{
public void run()
{
for(int i=0;i<100;i++)
{
System.out.println("thread 2:"+i);
}
}
}
运行错误。。
请帮忙看看。。谢谢 展开
{
public static void main (String args[])
{
int i;
test p=new test();
Thread s=new Thread (p);
s.start();
for(i=0;i<100;i++)
{
try
{
sleep(2000);
}
catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println("main thread:"+i);
}
}
}
class test implements Runnable
{
public void run()
{
for(int i=0;i<100;i++)
{
System.out.println("thread 2:"+i);
}
}
}
运行错误。。
请帮忙看看。。谢谢 展开
3个回答
展开全部
public static void main (String args[]){
int i;
test p=new test();
Thread s=new Thread (p);
s.start();
for(i=0;i<100;i++){
try{
s.sleep(2000);
}catch(InterruptedException e){
e.printStackTrace();
}
System.out.println("main thread:"+i);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-07-03 · 知道合伙人软件行家
关注
展开全部
Thread.sleep(毫秒);
你的调用方式错误了
你的调用方式错误了
追问
Thread一定代表主线程么?
追答
你调用Thread.sleep()就表示当前线程暂停
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Thread.sleep( 2000 );
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询