Scala SortedSet mkString() 方法示例
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.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(1, 2, 3, 4)
// Applying mkString method
val result = s1.mkString
// Display output
println(result)
}
}
输出:
1234
示例 #2:
// Scala program of mkString()
// method
import scala.collection.immutable.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