自动将2个变量提取到一个类中。 (IntelliJ)

时间:2018-12-19 15:16:21

标签: intellij-idea refactoring

也许我要求太多魔术,但是谁知道:-)

我想将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;
}

1 个答案:

答案 0 :(得分:0)

您可以使用Refactor -> Extract -> Delegate来做到这一点。