Open In App

Scala Double *(x: Short) method

Last Updated : 02 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
In Scala, Double is a 64-bit floating point number, which is equivalent to Java’s double primitive type. The *(x: Short) method is utilized to return the product of the specified Double value and Short value.
Method Definition - def *(x: Short) Returns - Returns the product of this value and x.
Example #1: SCALA
// Scala program to explain working of
// Double *(x: Short) method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying *(x: Short) function
        val result = (10.002200.toDouble).*(4:Short)
        
        // Displays output
        println(result)
    
    }
} 


 
Output:
40.0088
  Example #2: SCALA
// Scala program to explain working of
// Long *(x: Short) method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying *(x: Short) function
        val result = (15.002250.toDouble).*(5:Short)
        
        // Displays output
        println(result)
    
    }
} 
Output:
75.01125

Next Article
Article Tags :
Practice Tags :

Similar Reads