带有示例的 Scala Long toChar() 方法
toChar() 方法用于将指定的数字转换为字符值。这里指定的数字是 ASCII 值。
Method Definition: (Number).toChar
Return Type: It returns the converted character value.
示例 1:
// Scala program of Long toChar()
// method
// Creating object
object Test
{
// Main method
def main(args : Array[String])
{
// Implementing toChar method
val res = (68).toChar
// Displays output
println(res)
}
}
输出:
D
示例 2:
// Scala program of Long toChar()
// method
// Creating object
object Test
{
// Main method
def main(args : Array[String])
{
// Implementing toChar method
val res = (82).toChar
// Displays output
println(res)
}
}
输出:
R