Open In App

Scala Double *(x: Char) method

Last Updated : 02 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

In Scala, Double is a 64-bit floating point number, which is equivalent to Java’s double primitive type. The *(x: Char) method is utilized to return the product of the specified Double value and Char value.

Method Definition – def *(x: Char)

Returns – Returns the product of this value and x.

Example #1:




// Scala program to explain working of
// Double *(x: Char) method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying *(x: Char) function
        val result = (10.000210.toDouble).*('A':Char)
          
        // Displays output
        println(result)
      
    }


Output:

650.01365

 

Example #2:




// Scala program to explain working of
// Double *(x: Char) method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying *(x: Char) function
        val result = (15.000210.toLong).*('G':Char)
          
        // Displays output
        println(result)
      
    }


Output:

1065


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads