本文介绍了如何使用IntelliJ快捷方式将Java中的Runnable更改为lambda表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我具有以下匿名Runnable
实现.
Runnable cronTask = new Runnable() {
@Override
public void run() {
// do something
}
};
IntelliJ建议我将其替换为lambda表达式.例如:
IntelliJ suggests that I replace it with a lambda expression. eg:
Runnable cronTask = () -> {
// multiple "do something" statements
};
使用单个语句时,语法为:
When using a single statement the syntax is:
Runnable cronTask = () -> doSomething();
我可以使用什么快捷方式进行转换?
What shortcut can I use to convert it?
推荐答案
让IntelliJ在这里完成工作;您可以调用 + (或在Mac上为 + ),以允许IntelliJ替换为lambda表达式.
Let IntelliJ do the lifting here; you can invoke + (or + on Mac) to allow IntelliJ to replace it with a lambda expression.
这篇关于如何使用IntelliJ快捷方式将Java中的Runnable更改为lambda表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!