在Scala可变集合中,利用SortedSet toString()方法返回由SortedSet的所有元素组成的字符串。
函数定义: def toString():String
返回类型: It returns a string consisting of all the elements of the SortedSet.
范例1:
// Scala program of toString()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(1, 3, 44, 5)
// Applying toString method
val result = s1.toString
// Display output
println(result)
}
}
输出:
TreeSet(1, 3, 5, 44)
范例2:
// Scala program of toString()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(444, 555, 777, 666, 111)
// Applying toString method
val result = s1.toString
// Display output
println(result)
}
}
输出:
TreeSet(111, 444, 555, 666, 777)
注:本文由纯净天空筛选整理自 Scala Mutable SortedSet toString() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。