Open In App

Scala Short toByte() method

Short, a 16-bit signed integer (equivalent to Java’s short primitive type) is a subtype of scala.AnyVal. The toByte() method is utilized to convert the specified number into Byte datatype value.

Method Definition: (Number).toByte Return Type: It returns converted Byte value.



Example #1: 




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

Output: 



13

Example #2: 




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

Output: 

123

Article Tags :