为了账号安全,请及时绑定邮箱和手机立即绑定

Thread actor=new Thread(new Actor(),"Mr.Thread");

为什么如题的代码运行结果不对 编译器也不报错呢

正在回答

3 回答

package com.imooc.concurrent;


public class Actor extends Thread {


public void run() {

System.out.println(getName() + "is an actor");

int count = 0;

boolean a=true;

while (a){

System.out.println(getName() + "show begins" + (++count));

if (count==100)

{

a=false;

}

if(count%10==0){

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

// System.out.println(getName() + "show begins" + (++count));

System.out.println(getName() + "show is over");

}


public static void main(String[] args) {

// Thread actor = new Actor();

//

// actor.setName("Mr.Thread");

Thread actor=new Thread(new Actor(),"Mr.Thread");

actor.start();

Thread actressThread= new Thread(new Actress(),"Ms.Runnable");

actressThread.start();

}


}


 class Actress implements Runnable{

public void run() {

System.out.println(Thread.currentThread().getName() + "is an actor");

int count = 0;

boolean a=true;

while (a){

System.out.println(Thread.currentThread().getName() + "show begins" + (++count));

if (count==100)

{

a=false;

}

if(count%10==0){

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

// System.out.println(getName() + "show begins" + (++count));

System.out.println(Thread.currentThread().getName() + "show is over");

}

 }


0 回复 有任何疑惑可以回复我~

Actor是否实现了Runable或继承了Thread,run方法是否有问题

0 回复 有任何疑惑可以回复我~
#1

慕神1905738 提问者

代码加进来了 请看看是哪里的问题 谢谢
2016-10-25 回复 有任何疑惑可以回复我~

查看下 Actor类 是否实现了 runable接口

0 回复 有任何疑惑可以回复我~
#1

慕神1905738 提问者

代码加进来了 请帮忙看看是哪里的问题 谢谢
2016-10-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Thread actor=new Thread(new Actor(),"Mr.Thread");

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信