Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 Kotlin 1.5.0 开始,无符号整数类型 ( UInt, ULong) 应该是稳定的。但他们真的吗?
UInt
ULong
我的应用程序具有单个ULong变量,并在第一次操作后在运行时感到不安: variable++,给出错误消息:
variable++
拒绝类 kotlin.ULong,因为它未能通过编译时验证
也试过了variable += 1u——同样的错误。不涉及同步块,也不使用仪器测试。
variable += 1u
ULong替换为后错误消失Long。
Long