📌  相关文章
📜  带有示例的 Scala String getBytes() 方法

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

带有示例的 Scala String getBytes() 方法

getBytes()方法用于将指定的字符串编码为一系列字节,然后将其存储到新的字节数组中。此外,这里使用了平台默认字符集。

示例 #1:

// Scala program of getBytes()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying getBytes method
        val result = "Nidhi".getBytes()
          
        // Displays output
        println(result)
      
    }
} 
输出:
[B@506e1b77

示例 #2:

// Scala program of getBytes()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying getBytes method
        val result = " ".getBytes()
          
        // Displays output
        println(result)
          
    }
} 
输出:
[B@506e1b77