📜  Scala Int toByte() 方法与示例

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

Scala Int toByte() 方法与示例

toByte()方法用于将指定的 int 数转换为 Byte 数据类型值。

示例 #1:

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

示例 #2:

// Scala program of Int toByte()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toByte method
        val result = (129).toByte
          
          
        // Displays output
        println(result)
      
    }
} 
输出:
-127