📜  Scala 字节 toByte() 方法

📅  最后修改于: 2022-05-13 01:55:31.521000             🧑  作者: Mango

Scala 字节 toByte() 方法

在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。 toByte() 方法用于将指定的数字转换为 Byte 数据类型值。

示例 #1:

// Scala program of Byte toByte() 
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying toByte method 
        val result = (13).toByte 
          
        // Displays output 
        println(result) 
      
    } 
} 

输出:

13

示例 #2:

// Scala program of Byte toByte() 
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying toByte method 
        val result = (123).toByte
          
        // Displays output 
        println(result) 
      
    } 
} 

输出:

123