1. ホーム
  2. java

[解決済み] 何も取らず何も返さない関数型インターフェイス [重複]。

2022-04-24 12:49:58

質問

JDKには、何も受け取らず何も返さない標準的な機能インターフェイスがあるのでしょうか?私はそれを見つけることができません。次のようなものです。

@FunctionalInterface
interface Action {
  void execute();
}

解決方法は?

Runnableはどうでしょう。

@FunctionalInterface
public interface Runnable {
    /**
     * When an object implementing interface <code>Runnable</code> is used
     * to create a thread, starting the thread causes the object's
     * <code>run</code> method to be called in that separately executing
     * thread.
     * <p>
     * The general contract of the method <code>run</code> is that it may
     * take any action whatsoever.
     *
     * @see     java.lang.Thread#run()
     */
    public abstract void run();
}