最佳答案
JDK 中是否有一个标准的函数接口,它不接受任何东西,也不返回任何东西?我找不到。大致如下:
@FunctionalInterface
interface Action {
void execute();
}