最佳答案
Stream 没有 last()
方法:
Stream<T> stream;
T last = stream.last(); // No such method
获取最后一个元素(或空 Stream 为 null)的最优雅和/或有效的方法是什么?