我一直在寻找 Eclipse JDT 重构工具,它可以让我快速更改
if (...) {
Object x = blablabla;
}
到
Object x;
if (...) {
x = blablabla;
}
// insert code using x here
但我找不到它。存在这样的东西吗?
我一直在寻找 Eclipse JDT 重构工具,它可以让我快速更改
if (...) {
Object x = blablabla;
}
到
Object x;
if (...) {
x = blablabla;
}
// insert code using x here
但我找不到它。存在这样的东西吗?