eclipse怎樣生成構(gòu)造函數(shù)?
eclipse快速生成帶參數(shù)或不帶參數(shù)的構(gòu)造函數(shù),使用快捷鍵Alt+Shift+S。在一個(gè)JavaBean的類文件中,聲明了多個(gè)字段: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” 快速生成不帶參數(shù)的構(gòu)造方法:JSONBean(),點(diǎn)擊“Deselect All” 快速生成帶參數(shù)的構(gòu)造方法:JSONBean(String name, String imgUrl, String url),根據(jù)實(shí)際情況,選擇參加,可以選擇一個(gè),兩個(gè),三個(gè)