我有一个“预订”对象列表。 “预订”具有以下属性: - 长房间。日期。长命。双倍价格。
在某个时刻,这个列表可能是:
1 - 22/07/2016 - 15
1 - 23/07/2016 - 15
1 - 24/07/2016 - 15
4 - 01/08/2016 - 25
4 - 02/08/2016 - 25
4 - 03/08/2016 - 25
2016年4月4日至8月25日 - 25日
这意味着,7月22日至24日期间的1号房间预订,总价值45。 8月1日至4日期间预订4号房间,价值100。
我想创建一个“OrderDetail”对象的新列表。“OrderDetail”对象将具有以下属性:
- roomId,InitialDate,FinalDate,价格
因此,使用我的列表,它将创建两个OrderDetail对象,它将添加到OrderDetail列表。 这些对象将是:
有人可以帮助我吗?我认为这不是一个困难的代码,但我通常不编程,所以我有一些问题让它工作。
这是我糟糕的代码:
L1 = (this is a database query)
L2 = (this is the same query) (so I have two identical lists)
List<OrderDetail> L3 = new ArrayList<OrderDetail>();
Long roomId = null;
Date InititalDate;
Date FinalDate;
double price = 0;
for (int i = 0; i < L1.size(); i++) {
InititalDate = null;
Booking current = L1.get(i);
roomId = current.getRoomId();
InititalDate = current.getFecha();
Iterator<Booking> it = L2.iterator();
while (it.hasNext()) {
Booking current2 = it.next();
if (current2.getRoomId.equals(roomId)) {
precio = precio + current2.getPrecio();
FinalDate = current2.getFecha();
i++;
}
}
OrderDetail = new OrderDetail(roomId, InitialDate, FinalDate, precio);
L3.add(OrderDetail);
}
return L3;
}
答案 0 :(得分:0)
我正在学习Java8
,只是尝试用streams
Booking b1 = new Booking(1L, LocalDate.of(2016, 7, 22), 15d);
Booking b2 = new Booking(1L, LocalDate.of(2016, 7, 23), 15d);
Booking b3 = new Booking(1L, LocalDate.of(2016, 7, 24), 15d);
Booking b4 = new Booking(4L, LocalDate.of(2016, 8, 1), 25d);
Booking b5 = new Booking(4L, LocalDate.of(2016, 8, 2), 25d);
Booking b6 = new Booking(4L, LocalDate.of(2016, 8, 3), 25d);
Booking b7 = new Booking(4L, LocalDate.of(2016, 8, 4), 25d);
List<Booking> bookings = Arrays.asList(b1, b2, b3, b4, b5, b6, b7);
List<OrderDetail> orderDetails = bookings
.stream().collect(Collectors.groupingBy(Booking::getRoomId)).values().stream().map(i -> new OrderDetail(i.get(0).getRoomId(),
i.get(0).getBookedDate(), i.get(i.size() - 1).getBookedDate(), i.stream().collect(Collectors.summingDouble(Booking::getPrice))))
.collect(Collectors.toList());
System.out.println(orderDetails);
<强>输出强>
[OrderDetail [roomId=1, startDate=2016-07-22, endDate=2016-07-24, totalPrice=45.0], OrderDetail [roomId=4, startDate=2016-08-01, endDate=2016-08-04, totalPrice=100.0]]
请注意:我相信可能有更好的方法来实现这一点,请添加您的答案,乐于从中学习