我正在尝试使用.first()
来获取列表的第一个元素,但它无效(println()
没有打印任何内容。)
这是我的代码:
List<Record> dailyRecordList = listOfAllUserRecords.findAll{it == dateData}
println(dailyRecordList.first())
但是,如果我将dailyRecordList[0]
代替dailyRecordList.first()
,那么一切正常。
有人为什么要进行赎罪?