记录一个小笔记:获取一个对象中,支付成功的金额之和:
Long sum = list.stream().filter(o -> o.getStatus() == SUCCESS).mapToLong(Order::getAmount).sum();