如何安全地更改变量intellij的类型?

时间:2016-07-18 03:24:51

标签: java variables intellij-idea types intellij-14

假设我有一个这样的课程。

Public class MyClass{
    private String id;

    public Myclass(String id){
        this.id = id;
    }

    public String getId(){
        return id;
    }

    public void setId(String id){
        this.id = id;
    }
}

我突然想将type of id更改为Integer。有没有办法用 intellij 做到这一点而不会破坏用法?

1 个答案:

答案 0 :(得分:4)

突出显示字段类型,然后按 Ctrl + Shift + F6

突出显示字段类型Right-Click -> Refactor -> Type migration

突出显示字段类型Menu -> Refactor -> Type migration