带有示例的 Scala Char getClass() 方法
getClass()方法用于返回指定对象的运行时类表示。
Method Definition: def getClass(): Class[Char]
Return Type: It returns the class of the stated object.
示例:1#
// Scala program of getClass()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getClass() method
val result = 'a'.getClass
// Displays output
println(result)
}
}
输出:
char
示例:2#
// Scala program of getClass()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getClass() method
val result = '5'.getClass
// Displays output
println(result)
}
}
输出:
char