Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用番石榴库。
有没有办法在每个值中获取 Multimap?
例如Multimap中的值为1=[stack], 2=[over, flow], 3=[com]。如果Multimap名称为map,key为2,map.get("2")会出现[over, flow]。
map.get("2")
我只想获得“流量”。有可能吗?
Multimap 返回 a Collection<X>,听起来您需要该列表中的最后一项,在这种情况下,您只需要通过调用map.get("2")并检索列表中的最后/第 n 项来获取列表。
Collection<X>
Guava 有一个名为的类Iterables,它可能对您有用。例如
Iterables
String lastValue = Iterables.getLast(your_list);