Open In App

Scala Byte toShort() method

Last Updated : 30 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The toShort() method is utilized to convert the specified number into Short datatype value.
Method Definition: (Number).toShort Return Type: It returns converted Short value.
Example #1: Scala
// Scala program of Byte toShort() 
// method 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
    
        // Applying toShort method 
        val result = (13).toShort
        
        // Displays output 
        println(result) 
    
    } 
} 
Output:
13
Example #2: Scala
// Scala program of Byte toShort() 
// method 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
    
        // Applying toShort method 
        val result = (123.4).toShort
        
        // Displays output 
        println(result) 
    
    } 
} 
Output:
123

Next Article
Article Tags :
Practice Tags :

Similar Reads