假设我有以下课程
public class foo{
String a;
String b;
String c;
String d;
... // more Variables
public String getA(){
return a;
}
public void setA(String a){
this.a = a;
}
... // more getters and setters
}
在eclipse中生成以下构造函数的最简单方法是什么
public foo (String a, String b, String c, ...){
this.a = a;
this.b = b;
this.c = c;
...
}
答案 0 :(得分:1)
来源>使用字段生成构造函数... ( Alt + Shift + S , O )