如何使用Kotlin在android中传递函数。如果我知道像这样的功能,我就可以通过:
fun a(b :() -> Unit){
}
fun b(){
}
我想传递->
之类的任何函数
fun passAnyFunc(fun : (?) ->Unit){}
答案 0 :(得分:13)
您可以按以下方式使用匿名函数或lambda
fun main(args: Array<String>) {
fun something(exec: Boolean, func: () -> Unit) {
if(exec) {
func()
}
}
//Anonymous function
something(true, fun() {
println("bleh")
})
//Lambda
something(true) {
println("bleh")
}
}
答案 1 :(得分:2)
使用界面:
interface YourInterface {
fun functionToCall(param: String)
}
fun yourFunction(delegate: YourInterface) {
delegate.functionToCall("Hello")
}
yourFunction(object : YourInterface {
override fun functionToCall(param: String) {
// param = hello
}
})
答案 2 :(得分:0)
方法作为参数示例:
fun main(args: Array<String>) {
// Here passing 2 value of first parameter but second parameter
// We are not passing any value here , just body is here
calculation("value of two number is : ", { a, b -> a * b} );
}
// In the implementation we will received two parameter
// 1. message - message
// 2. lamda method which holding two parameter a and b
fun calculation(message: String, method_as_param: (a:Int, b:Int) -> Int) {
// Here we get method as parameter and require 2 params and add value
// to this two parameter which calculate and return expected value
val result = method_as_param(10, 10);
// print and see the result.
println(message + result)
}
答案 3 :(得分:0)
首先在如下所示的Oncreate中声明一个lambda函数(一个没有名称的函数称为lamdda函数。它来自kotlin标准库而不是用{}分层的kotlin语言)
var lambda={a:Int,b:Int->a+b}
现在创建一个可以接受另一个函数作为参数的函数,如下所示
fun Addition(c:Int, lambda:(Int, Int)-> Int){
var result = c+lambda(10,25)
println(result)
}
现在通过将lambda作为如下参数传递来在onCreate中调用添加函数
Addition(10,lambda)// output 45