ScheduleIntervalContainer

ScheduleIntervalContainer

我有一个ScheduleContainer对象的列表,并且在流中,每个元素都应强制转换为ScheduleIntervalContainer类型。有办法吗?

final List<ScheduleContainer> scheduleIntervalContainersReducedOfSameTimes

final List<List<ScheduleContainer>> scheduleIntervalContainerOfCurrentDay = new ArrayList<>(
        scheduleIntervalContainersReducedOfSameTimes.stream()
            .sorted(Comparator.comparing(ScheduleIntervalContainer::getStartDate).reversed())
            .filter(s -> s.getStartDate().withTimeAtStartOfDay().isEqual(today.withTimeAtStartOfDay())).collect(Collectors
                .groupingBy(ScheduleIntervalContainer::getStartDate, LinkedHashMap::new, Collectors.<ScheduleContainer> toList()))
            .values());

最佳答案

这是可能的,但您首先应该考虑是否完全需要强制转换,或者仅从一开始就应该对子类类型进行操作。

向下转换需要特别注意,您应该首先检查是否可以通过以下方法抛弃给定的对象:

object instanceof ScheduleIntervalContainer

然后,您可以通过以下方法很好地转换它:
(ScheduleIntervalContainer) object

因此,整个流程应如下所示:
collection.stream()
    .filter(obj -> obj instanceof ScheduleIntervalContainer)
    .map(obj -> (ScheduleIntervalContainer) obj)
    // other operations

10-07 16:10