The toString() method is utilized to return a string consisting of all the elements of the set.
Method Definition: def toString(): String
Return Type: It returns a string consisting of all the elements of the set.
Example #1:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 1 , 2 , 3 , 4 , 5 )
val result = s 1 .toString
println(result)
}
}
|
Output:
Set(5, 1, 2, 3, 4)
Example #2:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 41 , 12 , 23 , 43 , 1 , 72 )
val result = s 1 .toString
println(result)
}
}
|
Output:
Set(1, 41, 12, 72, 43, 23)