带有示例的 Scala Long toByte() 方法
toByte() 方法用于将指定的数字转换为 Byte 数据类型值。字节数据类型的范围是 -128 到 127。
Method Definition: (Number).toByte
Return Type: It returns the converted byte datatype value.
示例 1:
// Scala program of Long toByte()
// method
// Creating object
object Test
{
// Main method
def main(args : Array[String])
{
// Implementing toByte method
val res = (25).toByte
// Displays output
println(res)
}
}
输出:
25
示例 2:
// Scala program of Long toByte()
// method
// Creating object
object Test
{
// Main method
def main(args : Array[String])
{
// Implementing toByte method
val res = (129).toByte
// Displays output
println(res)
}
}
输出:
-127