📜  Scala Int toChar() 方法与示例

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

Scala Int toChar() 方法与示例

toChar()方法用于将指定的 int 数转换为 char 类型的值。

示例 #1:

// Scala program of Int toChar()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toChar method
        val result = (64).toChar
          
        // Displays output
        println(result)
    }
} 
输出:
@

示例 #2:

// Scala program of Int toChar()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toChar method
        val result = (68).toChar
          
        // Displays output
        println(result)
    }
} 
输出:
D