java 8 stream group by和sum double

时间:2015-02-10 14:23:33

标签: dictionary java-8 grouping java-stream collectors

我是java 8中的新手,所以我的方法可能是错误的。

我有2个对象如下

object1 {
    BigDecimal amount;
    Code1 code1;
    Code2 code2;
    Code3 code3;
    String desc;
}

object2 {
    BigDecimal amount;
    Code1 code1;
    Code2 code2;
    Code3 code3;
}

所以我想收集所有object1,其中code1&& code2&& code3相同,然后将金额加到object2列表中。

我没有代码可以执行此操作...我想编写一个代码来完成这项工作 我正在尝试实施http://docs.oracle.com/javase/tutorial/collections/interfaces/map.html

中的内容

或按部门计算所有工资的总和:

// Compute sum of salaries by department
Map<Department, Integer> totalByDept = employees.stream()
.collect(Collectors.groupingBy(Employee::getDepartment,
Collectors.summingInt(Employee::getSalary)));

1 个答案:

答案 0 :(得分:4)

感谢JB Nizet指出我正确的方向。 我不得不修改我的object2

public class CodeSummary {
    Double amount;
    CodeKey key;
//getters and setters

}
public class CodeKey {
    String code1;
    String code2;
    String code3;
//getters and setters

@Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof CodeKey)) return false;

        CodeKey that = (CodeKey) o;

        if (!code1.equals(that.code1)) return false;
        if (!code2.equals(that.code2)) return false;
        if (!code3.equals(that.code3)) return false;

        return true;
    }

@Override
public int hashCode() {
    int result = code1.hashCode();
    result = 31 * result + code2.hashCode();
    result = 31 * result + code3.hashCode();
    return result;
}

}

遍历object1并填充object2。一旦我填充了我的object2(现在是codeSymmary)。我可以使用下面的方法来完成这项工作。

        Map<CodeKey, Double> summaryMap = summaries.parallelStream().
                collect(Collectors.groupingBy(CodeSummary::getKey,
                Collectors.summingDouble(CodeSummary::getAmount))); // summing the amount of grouped codes.

如果有人以此为例。然后确保覆盖密钥对象中的equal和hashcode函数。否则分组将不起作用。

希望这有助于某人