也许我要求太多魔术,但是谁知道:-)
我想将2个变量提取到具有2个变量的类中,然后让IDE进行所有重构。这可能吗?
旧:
class badStart(){
private float positionX;
private float positionY;
<other stuff>
}
重构:
class badStart(){
private corrdinate;
<other stuff>
}
class coordinate(){
private float positionX;
private float positionY;
}
答案 0 :(得分:0)
您可以使用Refactor -> Extract -> Delegate
来做到这一点。