Scala Int toFloat() 方法与示例
toFloat()方法用于将指定的 int 数转换为 float 数据类型值。
Method Definition: (Number).toFloat
Return Type: It returns the converted float datatype value.
示例 #1:
// Scala program of Int toFloat()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toFloat method
val result = (1).toFloat
// Displays output
println(result)
}
}
输出:
1.0
示例 #2:
// Scala program of Int toFloat()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toFloat method
val result = (12).toFloat
// Displays output
println(result)
}
}
输出:
12.0