我创建了以下功能:
public fun storeImage(image: BufferedImage, toPath: String,
onCompletion: (contentURL: URL) -> Unit)
{
val file = File(this.storageDirectory, toPath)
log.debug("storing image: ${file.absolutePath}")
val extension = toPath.extensionOrNull()
if (!file.exists())
{
file.parentFile.mkdirs()
file.createNewFile()
}
ImageIO.write(image, extension!!, FileOutputStream(file.absolutePath))
onCompletion(URL(contentBaseUrl, toPath))
}
我可以看到我可以这样称呼它:
contentManager.storeImage(image, "1234/Foobar.jpg", onCompletion = {
println("$it")
})
或者我可以使用尾随闭包语法:
contentManager.storeImage(image, "1234/Foobar.jpg") {
println("$it")
}
但是如何调用store image方法并使用命名参数调用onCompletion函数?
修改/示例:
我想使用类似于:
的语法调用storeImage
方法
contentManager.storeImage(image, "1234/Foobar.jpg",
onCompletion = (bar: URL) : Unit -> {
//do something with bar
}
我无法在上述类型的文档中找到正确的语法。
答案 0 :(得分:8)
您可以使用常规语法为lambda参数指定名称。无论您是否使用命名参数将lambda传递给函数,这都有效。
contentManager.storeImage(image, "1234/Foobar.jpg",
onCompletion = { bar ->
//do something with bar
})