用于将类字段添加到 AndroidStudio 或 IDEA 中的现有构造函数的 ShortCut

我有简单的类:

public class A {
    private int a;
    private int b;

    public A(int a) {
        this.a = a;

    }
}

现在我想添加то构造函数参数并使用新参数初始化类字段。因此,最后,它必须是:int b

public A(int a, int b) {
    this.a = a;
    this.b = b;
}

那么,如果()有快捷方式吗?IDEAAndroidStudio


附言相同的问题:将字段添加到现有构造函数的快捷方式Eclipse


答案 1
  1. 确保要添加到构造函数的字段是private
  2. 用鼠标选择它的名字
  3. Alt+Enter
  4. 选择add constructor parametr

答案 2

好的,然后你可以这样做来改变。

  1. 选择构造函数。
  2. 在编辑器中单击鼠标右键。
  3. 单击“重构”。
  4. 单击“更改签名”,您将看到此内容

enter image description here

到达那里后,您可以添加或删除参数并添加新签名,重命名等,


推荐