eclipse有快捷键(ctrl + shift + somekey)来初始化变量的默认值 e.g
private Double scenarioValue;
private Double allocatedBudget;
//...other variables of different types
//setter n getter
我想要这个(下面),因为它需要很多时间来逐行初始化每个变量
private Double scenarioValue = 0.0;
private Double allocatedBudget = 0.0;
//...other variables of different types
//setter n getter
答案 0 :(得分:0)
使用java模板:
转到Window > Preferences > Java > Editor > Templates
。点击新建按钮。
添加详细信息,如下图中的粘贴${visibility:link('public ','protected ','','private ')} ${field:link('static ','final ','transient','volatile ')} ${type:link(Object,String,byte,short,int,long,float,double,boolean,char)} ${NAME} = ${expr:link(null,'""',0,0.0,true,false)};
进入模式文本框。单击“确定”并退出。
在java编辑器中输入new_
,然后按 Ctrl + SPACE ,然后选择 new_field_init 模板。使用 TAB 键移动到其他地方持有者和 ARROW DOWN / UP 键以选择其他选项。