Open In App

Scala Short toFloat() method

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

Method Definition: (Number).toFloat



Return Type: It returns converted Float value.

Example #1:




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

Output:



13.0

Example #2:




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

Output:

123.0

Article Tags :