toChar()方法用於將指定的數字轉換為字符值。這裏指定的數字是ASCII值。
函數定義: (Number).toChar
返回類型: 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
相關用法
- Scala Int toChar()用法及代碼示例
- Scala Float toChar()用法及代碼示例
- Scala Byte toChar()用法及代碼示例
- Scala Short toChar()用法及代碼示例
- Scala Char toChar()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 Scala Long toChar() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。