带有示例的 Scala Float getClass() 方法
getClass()方法用于返回给定数字的类。
Method Definition: (Number).getClass
Return Type: It returns the class of the given number.
示例 #1:
// Scala program of Float getClass()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getClass method
val result = (2).getClass
// Displays output
println(result)
}
}
输出:
int
示例 #2:
// Scala program of Float getClass()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getClass method
val result = (2.6).getClass
// Displays output
println(result)
}
}
输出:
double