我经常使用Map<U,V>
我转换并过滤以获得另一个Map<U,V'>
,但转换非常冗长,我在问号Guava: how to combine filter and transform?中看到FluentIterable
类,是有可能用它来简化以下内容吗?
public class GuavaTest {
public static class A{
int a;
int b;
int c;
public A(int a, int b, int c){
this.a=a; this.b=b; this.c=c;
}
}
public static void main(String[] args) {
//Example 2
final Map<String, A> map =Maps.newHashMap();
map.put("obj1",new A(1,1,1)); map.put("obj2",new A(1,2,1));
map.put("obj3",new A(1,3,1)); map.put("obj4",new A(1,4,1));
Function<A, Integer> function = new Function<A, Integer>() {
@Nullable
@Override
public Integer apply(@Nullable A input) {
return input.b;
}
};
Predicate<Integer> isPair = new Predicate<Integer>() {
@Override
public boolean apply(@Nullable Integer input) {
return input % 2 == 0;
}
};
//Can I use FluentIterable here ??
Map<String, Integer> stringIntegerMap = Maps.transformValues(map, function);
Map<String, Integer> stringIntegerMap1 = Maps.filterValues(stringIntegerMap, isPair);
}
}
答案 0 :(得分:2)
没有。
FluentIterable
并没有真正对地图做任何事情,并且肯定不会缩短您的Function
和Predicate
实施。唯一能缩短它们的是Java 8 lambdas,真的。