📜  带有示例的 Scala Char getClass() 方法

📅  最后修改于: 2022-05-13 01:55:14.308000             🧑  作者: Mango

带有示例的 Scala Char getClass() 方法

getClass()方法用于返回指定对象的运行时类表示。

示例: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