我有这样的课程结构:
public class A {
private List<B> bs;
...//getters
}
public class C {
private Long id;
...//getters
}
public class B {
private Long idOfC;
...//more stuff
}
B :: getIdOfC匹配C :: getId
在更好的设计中,B只会包含对C的引用,而不是其ID(我无法更改它的ID),因此这就是为什么现在我需要创建地图的原因,因此我的方法签名看起来像这样
public Map<A, List<C>> convert(Collection<A> collection)
在此convert方法内,有一个
List<C> getCsByIds(List<Long> id)
后来用于将其与B.idOfC进行匹配,但由于该方法非常昂贵,因此只能对其进行一次调用。
所以,如果我这样走:
List<B> bs = Arrays.asList(new B(10L), new B(11L)); //10L and 11L are the values of idOfC
List<A> as = Arrays.asList(bs);
//And assuming getCsByIds returns Arrays.asList(new C(10L), new C(11L), new C(12L));
然后
Map<A, List<C>> map = convert(as);
map.values().get(0)
返回类似Arrays.asList(new C(10L), new C(11L))
在我看来,执行此操作的方法非常庞大:
public Map<A, List<C>> convert(Collection<A> as) {
List<Long> cIds = as.stream()
.flatMap(a -> a.getBs().stream())
.map(B::getCId)
.collect(Collectors.toList());
//single call to gsCsByIds
Map<Long, C> csMap = getCsByIds(cIds)
.stream()
.collect(Collectors.toMap(C::getId, Function.identity()));
//a whole new map is created by iterating over the list called "as"
Map<A, List<C>> csByAs = new HashMap<>();
if (!csMap.isEmpty()) {
for (A a : as) {
Set<C> cs = getCsFromMap(csMap, a.getBs());
if (!cs.isEmpty()) {
csByAs.put(a, new ArrayList<>(cs));
}
}
}
return csByAs;
}
private Set<B> getCsFromMap(Map<Long, C> cMap, List<B> bs) {
return bs.stream()
.map(b -> cMap.get(b.getIdOfc()))
.collect(Collectors.toSet());
}
有没有办法使它更简单?
答案 0 :(得分:2)
如果对getCsByIds
的调用很昂贵,那么您最初的想法很不错。可以进一步缩短为:
public Map<A, List<C>> convert(Collection<A> as) {
List<Long> cIds = as.stream()
.flatMap(a -> a.getBs().stream())
.map(B::getIdOfC)
.collect(Collectors.toList());
Map<Long, C> csMap = getCsByIds(cIds).stream()
.collect(Collectors.toMap(C::getId, Function.identity()));
return as.stream()
.collect(Collectors.toMap(Function.identity(),
a -> a.getBs().stream().map(b -> csMap.get(b.getIdOfC()))
.collect(Collectors.toList()), (a, b) -> b));
}
您可以在其中选择合并功能(a,b) -> b
。
答案 1 :(得分:1)
也许只是直接遍历As? (目前没有编译器,因此该代码段可能尚未编译就绪)
public Map<A, List<C>> convert(Collection<A> as) {
Map<A, List<C>> result = new HashMap<>();
for(A a: as){
List<Long> cIds = a.getBs().stream()
.map(B::getIdOfC)
.collect(Collectors.toList());
result.put(a, getCsByIds(cIds));
}
return result;
}
答案 2 :(得分:0)
像这样的作品难道不是吗?我没有编译器,所以我无法真正对其进行测试
public Map<A, List<C>> convert(Collection<A> as) {
return as.stream()
.collect(Collectors.toMap(Function::identity,
a -> a.getBs().stream()
.map(B::getIdOfC)
.flatMap(id -> getCsByIds(asList(id))
.values()
.stream())
.collect(Collectors.toList())
)
);
}