Scala Mutable SortedSet mkString() 方法
在 Scala 可变集合中, mkString()方法用于在字符串中显示 SortedSet 的所有元素。
Method Definition: def mkString: String
Return Type: It returns a string containing all the element of the SortedSet.
示例 #1:
// Scala program of mkString()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(121, 2242, 331, 400)
// Applying mkString method
val result = s1.mkString
// Display output
println(result)
}
}
输出:
1213314002242
示例 #2:
// Scala program of mkString()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet("Geeks", "Will", "Rule")
// Applying mkString method
val result = s1.mkString
// Display output
println(result)
}
}
输出:
GeeksRuleWill