Open In App

Scala Byte toDouble() method

Last Updated : 30 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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

Method Definition: (Number).toDouble

Return Type: It returns converted Double value.

Example #1:




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


Output:

13.0

Example #2:




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


Output:

123.0


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads