在Groovy中使用List.first()时出错

时间:2018-05-03 16:04:24

标签: groovy

我正在尝试使用.first()来获取列表的第一个元素,但它无效(println()没有打印任何内容。)

这是我的代码:

List<Record> dailyRecordList = listOfAllUserRecords.findAll{it == dateData}

println(dailyRecordList.first())

但是,如果我将dailyRecordList[0]代替dailyRecordList.first(),那么一切正常。

有人为什么要进行赎罪?

0 个答案:

没有答案