美文网首页
Kotlin基本数据类型转换

Kotlin基本数据类型转换

作者: Kael_Zhang的安卓笔记 | 来源:发表于2022-06-14 22:35 被阅读0次

基本数据类型

类型 位宽
Double 64
Float 32
Long 64
Int 32
Shor 16
Byte 8

相互转换

toByte()  //: Byte
toShort()  //: Short
toInt()  //: Int
toLong()  //: Long
toFloat()  //: Float
toDouble()  //: Double
toChar()  //: Char

相关文章

网友评论

      本文标题:Kotlin基本数据类型转换

      本文链接:https://www.haomeiwen.com/subject/eldzmrtx.html