在以下代码中(在kotlin中)
fun greet(){
print("Hello! ")
}
fun salute(){
print("Have a nice day ")
}
fun main(args: Array<String>){
//val todoList: List<()->Unit> = listOf(::greet,::salute)
val todoList: List<()->Unit> = listOf({greet()},{salute()})
for(task in todoList){
task()
}
}
使用现在注释的第一种方法(函数引用)相对于使用第二种方法(仅在lambda中调用函数)有什么意义
到目前为止,结果都显示“你好!祝你有美好的一天”