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

若只有My Thread怎么回事?错在哪了??

package seecen20160820例题;


public class Actor extends Thread{

    public void run(){

    System.out.println(Thread.currentThread(). getName()+"是一个演员!");

    int count =0;

    boolean keepRunning=true;

    while(keepRunning){

    System.out.println(Thread.currentThread().getName()+"登台演出:"+( ++count) );

    if(count ==100){

    keepRunning =false;

    }

    if(count%10==0){

    try{

    Thread.sleep(1000);

    }catch(InterruptedException e){

    e.printStackTrace();

    }

    }

    }

    System.out.println(Thread.currentThread().getName()+"演出结束了!");

   

    }

    public static void main(String[] args) {

Thread actor =new Actor();

actor.setName("Mr.Thread");

actor.start();

 

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

actressThread.start();

   

}  

}

class Actress implements Runnable{


@Override

public void run() {

}

}






正在回答

1 回答

你只设置了一个线程,只有My Thread,所以只会显示My Thread。你的问题不是很清晰,你的意思是想要多个线程?



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

举报

0/150
提交
取消

若只有My Thread怎么回事?错在哪了??

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