Module java.base
Package java.lang

Interface Runnable

所有已知的子接口:
RunnableFuture<V>, RunnableScheduledFuture<V>
所有已知的实现类:
AsyncBoxView.ChildState, ForkJoinWorkerThread, FutureTask, RenderableImageProducer, SwingWorker, Thread, TimerTask
函数式接口:
这是一个函数式接口,因此可以用作lambda表达式或方法引用的赋值目标。

@FunctionalInterface public interface Runnable
表示不返回结果的操作。

这是一个函数式接口,其功能方法是run()

自版本:
1.0
参见:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    运行此操作。
  • Method Details

    • run

      void run()
      运行此操作。