if判断条件过多,利用Map,让代码表达更清晰

int a = 1;

if(a ==1 ||  a == 3 || a == 4 || a == 8 || a == 11){

}

=====================================

Map<Integer,Boolean> map = new HashMap();

map.put( 1, true);

map.put( 3, true);

map.put( 4, true);

map.put( 8, true);

map.put( 11, true);

int a = 1;

if(map.get( a )){

}

上一篇:Map接口方法


下一篇:Linux_目錄結構與操作_基本命令