toByte()方法用於將聲明的字符轉換為字節類型。
函數定義: def toByte: Byte
返回類型: It returns Bytes of the character stated.
示例:1#
// Scala program of toByte()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toByte method
val result = 'A'.toByte
// Displays output
println(result)
}
}
輸出:
65
示例:2#
// Scala program of toByte()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toByte method
val result = 'a'.toByte
// Displays output
println(result)
}
}
輸出:
97
相關用法
- Scala Int toByte()用法及代碼示例
- Scala Byte toByte()用法及代碼示例
- Scala Float toByte()用法及代碼示例
- Scala Shor toByte()用法及代碼示例
- Scala Long toByte()用法及代碼示例
- Scala Char to(end: Char, step: Char)用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char toByte() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。