带有示例的 Scala String getBytes() 方法
getBytes()方法用于将指定的字符串编码为一系列字节,然后将其存储到新的字节数组中。此外,这里使用了平台默认字符集。
Method Definition: byte getBytes()
Return Type: It returns a new byte array storing series of bytes.
示例 #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