当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Byte toLong()用法及代码示例


在Scala中,Byte是8位有符号整数(相当于Java的字节原始类型)。 toLong()方法用于将指定的数字转换为Long数据类型值。

函数定义: (Number).toLong

返回类型: It returns converted Long value.



范例1:

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

输出:

13

范例2:

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

输出:

123


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Scala Byte toLong() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。