Eclipse快速生成带参数或不带参数的构造函数,使用快捷键Alt+Shift+S。在一个JavaBean的类文件中,声明了多个字段:name,imgUrl,url
package cn.teachcourse.www;
public class JSONBean {
private String name;
private String imgUrl;
private String url;
public JSONBean(String name, String imgUrl, String url) {
super();
this.name = name;
this.imgUrl = imgUrl;
this.url = url;
}
public JSONBean() {
super();
}
快捷键Alt+Shift+S,弹出的菜单中选择“Generate Constructor using Fields”
快速生成不带参数的构造方法:JSONBean(),点击“Deselect All”
快速生成带参数的构造方法:JSONBean(String name, String imgUrl, String url),根据实际情况,选择参加,可以选择一个,两个,三个