lambda表达式中的返回类型错误:BigDecimal无法转换为long

时间:2019-05-25 15:38:57

标签: java java-stream bigdecimal speedment

我试图通过速度在Java流中编写查询。 当我尝试选择sum (l_extendedprice * (1 - l_discount))时,出现以下错误:

  

lambda表达式中的返回类型错误: BigDecimal无法转换为long。运算符'-'不能应用于'int','java.math.BigDecimal'

我的代码是这样的:

JoinComponent joinComponent = app.getOrThrow(JoinComponent.class);
Join<Tuple6<Customer, Orders, Lineitem, Supplier, Nation, Region>> join = joinComponent
        .from(CustomerManager.IDENTIFIER)
        .innerJoinOn(Orders.O_CUSTKEY).equal(Customer.C_CUSTKEY)
        .where(Orders.O_ORDERDATE.greaterOrEqual(sqlDate))
        .where(Orders.O_ORDERDATE.lessThan(sqlDate2))
        .innerJoinOn(Lineitem.L_ORDERKEY).equal(Orders.O_ORDERDATE)
        .innerJoinOn(Supplier.S_SUPPKEY ).equal(Customer.C_NATIONKEY)
        .innerJoinOn(Nation.N_NATIONKEY).equal(Supplier.S_NATIONKEY)
        .innerJoinOn(Region.R_REGIONKEY).equal(Nation.N_REGIONKEY)
        .where(Region.R_NAME.equal("ASIA"))
        .build(Tuples::of);

Comparator<Tuple1<String>> comparator = Comparator
        .comparing((Function<Tuple1<String>, String>) Tuple1::get0)
        .thenComparing(Tuple1::get0);

Map<Tuple1<String>, LongSummaryStatistics> grouped = join.stream()
        .collect(groupingBy(t -> Tuples.of(t.get4().getNName()),
                () -> new TreeMap<>(comparator),
                summarizingLong(t->t.get2().getLDiscount()*(1-t.get2().getLDiscount()))
        ));

我该如何解决?

1 个答案:

答案 0 :(得分:0)

因此,问题在于+-*/,...与BigDecimal不兼容。您必须使用.add().subtract().multiply().divide(),...方法进行计算。

如果可能,您可以使用BigDecimal.longValue()BigDecimal.longValueExact()BigDecimal转换为长值以在计算中使用它们:

Map<Tuple1<String>, LongSummaryStatistics> grouped = join.stream()
        .collect(Collectors.groupingBy(Tuples::of,
                () -> new TreeMap<>(comparator),
                Collectors.summarizingLong(t -> t.get2().getLDiscount().longValue() *
                        (1 - t.get2().getLDiscount().longValue()))
        ));

或者,您可以使用BigDecimal进行整个计算,然后将值转换为long:

Map<Tuple1<String>, LongSummaryStatistics> grouped = join.stream()
        .collect(Collectors.groupingBy(Tuples::of,
                () -> new TreeMap<>(comparator),
                Collectors.summarizingLong(t -> t.get2().getLDiscount()
                        .multiply(BigDecimal.ONE
                        .subtract(t.get2().getLDiscount())).longValue())
        ));

如果两种解决方案都不适合您,则必须为BigDecimalSummaryStatistics编写一个自己的集合,或者直接计算您需要的值。您可以阅读this question来使用Java Stream汇总BigDecimal值。