009-java中常用的单个键值对

2021-05-20 06:31

阅读:549

标签:maps   mmu   mon   imm   simple   bsp   tpc   try   java   

1、Java 6提供AbstractMap.SimpleEntry和AbstractMap.SimpleImmutableEntry 

Map.Entry entry1 = new AbstractMap.SimpleEntry("key", 9527);

2、Apache commons-collections的KeyValue 

Map.Entry entry3 = new DefaultMapEntry("key", 9527)
KeyValue kv = new DefaultKeyValue("rkey", 9527);

3、Guava的Maps.immutableEntry 

Map.Entry entry2 = Maps.immutableEntry("key", 9527);

4、Apache commons-lang3的Pair 

Map.Entry entry4 =new ImmutablePair("key", 9527);

5、Apache HttpClient的NameValuePair 

NameValuePair nv = new BasicNameValuePair("key", "9527");

可以扩展Map.Entry或者封装Class。

 

009-java中常用的单个键值对

标签:maps   mmu   mon   imm   simple   bsp   tpc   try   java   

原文地址:https://www.cnblogs.com/bjlhx/p/9740062.html


评论


亲,登录后才可以留言!