gpt4 book ai didi

android - 如何在 Kotlin 中获取数据类型

转载 作者:行者123 更新时间:2023-12-02 13:03:29 24 4
gpt4 key购买 nike

在javascript中:

var a = 10;
console.log(typeof a); // It's return data type 'Number'

如何在 Kotlin 中获取数据类型?

var a:Int = 10
println(/* What is the code? */)

我刚开始学习 Kotlin。我搜索了文档,但找不到。

最佳答案

可以这样获取变量的类

var a : Int = 10
println(a::class.simpleName) // Int
// or
println(a::class.qualifiedName) // kotlin.Int

关于android - 如何在 Kotlin 中获取数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60518590/

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