📜  Scala Int toString() 方法与示例

📅  最后修改于: 2022-05-13 01:54:37.347000             🧑  作者: Mango

Scala Int toString() 方法与示例

toString()方法用于返回指定值的字符串表示形式。

示例 #1:

// Scala program of Int toString()
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying toString method 
        val result = (65).toString
          
        // Displays output 
        println(result) 
    } 
} 
输出:
65

示例 #2:

// Scala program of Int toString()
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying toString method 
        val result = (1515).toString
          
        // Displays output 
        println(result) 
    } 
} 
输出:
1515