Scala Long *(x: Byte) 方法

Scala Long *(x: Byte) 方法

在Scala中,Long是一个64位有符号整数,相当于Java的long原始类型。利用*(x: Byte) 方法,可以返回指定的Long值与Byte值的乘积。

方法定义 – def *(x: Byte)

返回 – 返回该值与x的乘积。

例子 #1 :

// Scala program to explain working of
// Long *(x: Byte) method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying *(x: Byte) function
        val result = (13.toLong).*(2^4:Byte)
          
        // Displays output
        println(result)
      
    }
} 

输出

78

例子#2

// Scala program to explain working of
// Long *(x: Byte) method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying *(x: Byte) function
        val result = (150.toLong).*(2^5:Byte)
          
        // Displays output
        println(result)
      
    }
} 

输出

1050

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程