码迷,mamicode.com
首页 > 其他好文 > 详细

定义Map常量,List常量

时间:2016-01-18 17:28:34      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:

一般的方式的使用静态代码块。比如:

public final static Map map = new HashMap();    
static {    
    map.put("key1", "value1");    
    map.put("key2", "value2");    
} 

 

下面为一种简单定义Map常量的方式

public final static Map<String, Fragment> NAV_ITEM_ADPTER = new HashMap<String, Fragment>() {  
    {  
        put("拍录传", new CameraFragment());  
        put("集群对讲", new GroupTalkFragment());  
        put("视通", new VideoCallFragment());  
        put("位置", new PositionFragment());  
        put("浏览", new BrowseFragment());  
        put("消息", new MsgFragment());  
        put("群组", new GroupFragment());  
        put("设置", null);  
        put("退出", null);  
    }  
};  

 

List的话则可以这样定义:

public final static List<String> LIST = Arrays.asList("one","two","three");    

  

定义Map常量,List常量

标签:

原文地址:http://www.cnblogs.com/rencm/p/5139785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!