java8 lambda取时间最新元素问题
List<QuotePriceOrderDto> quotePriceOrderDtos = this.getWorkerQuote( id,model,request);
如何取到时间最新的一个,一下代码取到的事date??
quotePriceOrderDtos = quotePriceOrderDtos.stream().map(QuotePriceOrderDto::getCreatedAt).max(org.joda.time.DateTime::compareTo).get();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
嗯,谢谢,学习了,我自己解决了,按照匿名函数的思路就可以了,记录在我自己的博客里:http://www.weiqinxue.cn/blogs/index.php/UserExt/TopicsDetail/UserID/2/NoteID/59 (话说我总发我自己博客的链接会不会被红薯踢了^_^)
回复
看过你的博客了,我也学习了,谢谢
map方法中是这样说的:Returns a stream consisting of the results of applying the given function to the elements of this stream.
quotePriceOrderDtos.stream()经过map之后变成了另外一个流,这个流由你每个对象中的CreatedAt组成,必然经过compareTo之后得到的是一个date。