HashMap的另类写法

static Map map = new HashMap(8) {
        {
            put("DISINVESTMENT", R.mipmap.icon_disinvestments);
            put("PAY", R.mipmap.icon_recharges);
            put("INVESTMENT", R.mipmap.icon_invests);
            put("WITHDRAW", R.mipmap.icon_withdraws);
            put("TRANSFER", R.mipmap.icon_transfers);
            put("COMMISSION", R.mipmap.icon_yongjin);
            put("SALE_COMMISSION", R.mipmap.icon_reward);
            put("REBATE", R.mipmap.icon_fans);

        }
    };

static List list = new ArrayList(3) {
    {
        add("AAA");
        add("BBB");
        add("CCC");
    }
};

你可能感兴趣的:(Android)