Open In App

Scala Byte *(x: Long): Long

In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The method *(x:Long) method is utilized to return the product of this value and x.

Method Definition: Byte *(x: Long): Long
Return Type: It returns the product of this value and x.



Example #1:




// Scala program of Byte *(x: Long)
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Applying Byte *(x: Long) function 
        val result = (64.toByte).*(12:Long) 
          
        // Displays output 
        println(result) 
      
    

Output:

768

Example #2:




// Scala program of Byte *(x: Long)
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Applying Byte *(x: Long) function 
        val result = (17.toByte).*(128:Long) 
          
        // Displays output 
        println(result) 
      
    

Output:



2176

Article Tags :