作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
Kotlin 有许多简写和有趣的功能。所以,我想知道是否有一些快速而简短的方法可以将字符串数组转换为整数数组。类似于 Python 中的这段代码:
results = [int(i) for i in results]
最佳答案
您可以使用 .map { ... }
与 .toInt()
或 .toIntOrNull()
:
val result = strings.map { it.toInt() }
只有结果不是数组而是列表。在非性能关键代码中最好在数组上使用列表,请参阅 the differences .
如果需要数组,添加 .toTypedArray()
或 .toIntArray()
.
关于arrays - 如何在 Kotlin 中将 String 数组转换为 Int 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45823162/
我是一名优秀的程序员,十分优秀!