map的使用

Posted For_elegant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map的使用相关的知识,希望对你有一定的参考价值。

 

//------------------------------------Finals -----------------------------------------

public static final Map<String,String> CANCI = new LinkedHashMap<String, String>();
static {
CANCI.put("01", "早餐");
CANCI.put("02", "午餐");
CANCI.put("03", "晚餐");
CANCI.put("04", "大夜宵");
CANCI.put("05", "小夜宵");
CANCI.put("06", "加班");
}

//------------------------------------ Controller 层 ----------------------------------------

 

model.addAttribute("CANCI", Finals.CANCI);

 

//------------------------------------ jsp 页面--------------------------

<c:forEach items="${CANCI}" var="map">
  <%-- <c:out value="${map.key}"></c:out> --%>
  <c:if test="${co.mealTimeCode == map.key }">${map.value }</c:if>
</c:forEach>

 

以上是关于map的使用的主要内容,如果未能解决你的问题,请参考以下文章

Go语言Map的使用

java中如何不使用map功能

Groovymap 集合 ( map 集合遍历 | 使用 map 集合的 find 方法遍历 map 集合 | 代码示例 )

java中如何使用map存取数据

如何在 Javascript 中的 Map 键上使用 .map()

mybatis Map的简单使用