2

次のように仮定します。

ExecutorService service = ...;

// somewhere in the code the executorService is used this way:
service.submit(() -> { ... });

ラムダ式のデフォルトはCallable. 代わり
にインスタンス化する方法はありますか?Runnable

ご協力いただきありがとうございます。

4

4 に答える 4

2
   service.submit((Runnable) () -> {
      ...
   });
于 2016-01-08T07:20:46.180 に答える