这段代码出现以下错误,这对我来说毫无意义:
fun spawnWorker(): Runnable {
return Runnable {
LOG.info("I am a potato!")
return
}
}
我的 IDE 对我说:
但 Runnable 接口另有说明:
@FunctionalInterface
public interface Runnable {
public abstract void run();
}
是什么原因我不能在那里有回报,但没有任何回报,它编译得很好:
fun spawnWorker(): Runnable {
return Runnable {
LOG.info("I am a potato!")
}
}