Thread中的run()
Posted xiaofan156
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thread中的run()相关的知识,希望对你有一定的参考价值。
/* What will be run. */
private Runnable target;
如果线程在创建时传入了Runnable运行对象,那么该对象的run方法将被调用
1 /** 2 * If this thread was constructed using a separate 3 * <code>Runnable</code> run object, then that 4 * <code>Runnable</code> object‘s <code>run</code> method is called;
否则,不做任何事且返回 5 * otherwise, this method does nothing and returns. 6 * <p>
Thread的子类应该重写这个方法 7 * Subclasses of <code>Thread</code> should override this method. 8 * 9 * @see #start() 10 * @see #stop() 11 * @see #Thread(ThreadGroup, Runnable, String) 12 */ 13 @Override 14 public void run() { 15 if (target != null) { 16 target.run(); 17 } 18 }
以上是关于Thread中的run()的主要内容,如果未能解决你的问题,请参考以下文章
创建线程时如果既传入了runnable对象,又继承thread重写了run方法,会执行的哪里的代码