带有示例的 Scala Char toInt() 方法
toInt()方法用于将指定的字符转换为整数或 Int 类型的 ASCII 值。
Method Definition: def toInt: Int
Return Type: It returns Integer or ASCII value of the corresponding character of type Int.
示例: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