gpt4 book ai didi

compiler-errors - 为什么 == 在 Kotlin 中的不同类型上创建编译错误

转载 作者:行者123 更新时间:2023-12-04 22:14:06 26 4
gpt4 key购买 nike

无法编译以下代码:

if ("2" == 3) {
//do something
}

错误:Kotlin:运算符“==”不能应用于“String”和“Int”

但是,Kotlin 文档说这是结构相等,并被翻译为 a?.equals(b) ?: (b === null): https://kotlinlang.org/docs/reference/equality.html .

那么这里到底发生了什么?它是如何工作的?

最佳答案

这是一个报告为 KT-4071 的 Kotlin 错误在 youtrack 中,优先级是 Major,所以我认为它会很快修复。例如:

val ok = "2".equals(3) // works fine
val error = "2" == 3 // compilation error

关于compiler-errors - 为什么 == 在 Kotlin 中的不同类型上创建编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45021985/

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