gpt4 book ai didi

kotlin - final 或 val 函数参数或在 Kotlin 中?

转载 作者:IT老高 更新时间:2023-10-28 13:29:32 28 4
gpt4 key购买 nike

为什么 Kotlin 去掉了 Java 中非常有用的 final 或 val 函数参数?

fun say(val msg: String = "Hello World") {
msg = "Hello To Me" // would give an error here since msg is val
//or final
...
...
...
}

最佳答案

Kotlin 函数参数是最终的。没有 val 或 final 关键字,因为这是默认值(并且无法更改)。

关于kotlin - final 或 val 函数参数或在 Kotlin 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40563406/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com