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.
我对使用番石榴很陌生,我试图从多图值集合中获取对象。我试过使用Iterables.transform,但我不知道如何使用它来获取对象。你能帮我举个例子吗?我感谢每一个帮助。谢谢你。
Iterables.transform
for(Collection<V> values : multimap.values()){ for(V value : values){ value.doSomething(); } }