如果我有以下方法:
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)
的参数?
答案 0 :(得分:2)
无需特殊处理, Ctrl + Space 将为您提供上面显示的完成。
您所要做的就是选择预期的完成时间。