IntelliJ快捷方式自动完成重载方法的参数?

时间:2018-03-07 00:26:24

标签: intellij-idea

如果我有以下方法:

void foo(int one, int two, int three, int four){
   foo(|
}

void foo(int one, int two, int three, int four, int five) {
   // do something
}

我的光标是|所在的位置。是否有快捷方式告诉IntelliJ自动完成要传递到foo(one, two, three, four, null)的参数?

1 个答案:

答案 0 :(得分:2)

image

无需特殊处理, Ctrl + Space 将为您提供上面显示的完成。
您所要做的就是选择预期的完成时间。