The toString() method is utilized to return a string object itself.
Scala
Scala
Method Definition: String toString() Return Type: It returns the string object.Example: 1#
// Scala program of toString()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toString method
val result = "GEEKS".toString()
// Displays output
println(result)
}
}
Output:
Example: 2#
GEEKS
// Scala program of toString()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toString method
val result = "10".toString()
// Displays output
println(result)
}
}
Output:
10