@FunctionalInterface public interface Runnable
Runnable
接口应由任何类实现,其实例将由线程执行。
该类必须定义一个无参数的方法,称为run
。
该接口旨在为希望在活动时执行代码的对象提供一个通用协议。 例如, Runnable
由Thread类Thread
。 活跃的只是意味着一个线程已经启动,还没有被停止。
另外, Runnable
提供了一个类被激活而不是Thread Thread
类化的Thread
。 一个实现类Runnable
可以在不继承运行Thread
实例化一个Thread
实例,并在传递本身作为目标。 在大多数情况下, Runnable
接口应使用,如果你只打算重写run()
方法并没有其他Thread
方法。 这是重要的,因为类不应该被子类化,除非程序员打算修改或增强类的基本行为。
void run()
Runnable
被用来创建一个线程,启动线程使对象的run
在独立执行的线程中调用的方法。
方法run
的一般合同是它可以采取任何行动。
Thread.run()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.