在eclipse中自动生成构造函数?

时间:2017-08-03 06:49:44

标签: eclipse constructor autocomplete

假设我有以下课程

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;
...
}

1 个答案:

答案 0 :(得分:1)