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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。