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


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


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

函数定义: (Number).toInt

返回类型: It returns converted Int value.



范例1:

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

输出:

13

范例2:

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

输出:

123


相关用法


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