当我在 Eclipse 中调查代码时,我会执行以下操作:
method1() {
method2(a,b,c);
……
我选择method2并按F3:
method2(int a,String b, long c ){
method3();
……
我选择method2并按F3:
method3() {
....
method4(....
有时链可以接近 10 件!是否存在返回的捷径?所以我可以回到我之前的位置吗?
PS 我知道 Ctrl+Q 用于最后一次编辑,但这是不同的。