在项目中有个场景:已知a,b,c,d,若传四个中的一个则返回传入的值,否则则默认返回a;
看到这个问题,就想到要把a,b,c,d这几个放到一个静态变量中,但是脑子竟然转不来,怎么去初始化,看来平时代码copy多了!
public class example{ public static final Mapmap = new HashMap () ; static { map.put("a","this is a") ; map.put("b","this is b") ; map.put("c","this is c") ; map.put("d","this is d") ; }}