gpt4 book ai didi

kotlin - 如何在 Kotlin 中将 Long 转换为 Int?

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

我想做这样的事情:

fun process(minutes: Int) = 0

fun test() {
process(System.currentTimeMillis() / 1000 / 60) // error: Int expected
}

如果我尝试 process((System.currentTimeMillis()/1000/60) as Int) 我会在运行时得到一个 ClassCastException

那么如何将 Long 转换为 Int?

最佳答案

使用 Long.toInt() :

process((System.currentTimeMillis() / 1000 / 60).toInt()) 

关于kotlin - 如何在 Kotlin 中将 Long 转换为 Int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35913617/

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