如何安全地更改变量 intellij 的类型?
How to safe change the type of a variable intellij?
假设我有一个这样的class。
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 做到这一点?
突出显示字段类型并按 Ctrl+Shift+F6
或
突出显示字段类型,Right-Click -> Refactor -> Type migration
或
突出显示字段类型,Menu -> Refactor -> Type migration
假设我有一个这样的class。
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 做到这一点?
突出显示字段类型并按 Ctrl+Shift+F6
或
突出显示字段类型,Right-Click -> Refactor -> Type migration
或
突出显示字段类型,Menu -> Refactor -> Type migration