Open In App

Scala Byte toInt() method

In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The toInt() method is utilized to convert the specified number into Int datatype value.

Method Definition: (Number).toInt



Return Type: It returns converted Int value.

Example #1:




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

Output:



13

Example #2:




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

Output:

123

Article Tags :