用于将类字段添加到 AndroidStudio 或 IDEA 中的现有构造函数的 ShortCut
2022-09-04 21:07:12
我有简单的类:
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;
}
那么,如果()有快捷方式吗?IDEA
AndroidStudio
附言相同的问题:将字段添加到现有构造函数的快捷方式Eclipse