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

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

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

toInt()方法用于将指定的字符转换为整数或 Int 类型的 ASCII 值。

示例:1#

// Scala program of toInt()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toInt method
        val result = 'A'.toInt
          
        // Displays output
        println(result)
      
    }
} 
输出:
65

示例:2#

// Scala program of toInt()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toInt method
        val result = '9'.toInt
          
        // Displays output
        println(result)
      
    }
} 
输出:
57