Scala Mutable SortedSet head() 方法
在 Scala 可变集合中,SortedSet head()方法用于显示 SortedSet 的第一个元素。
Method Definition: def head: A
Return Type: It returns the first element of the SortedSet.
示例 #1:
// Scala program of head()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(12, 15, 14, 13)
// Applying head method
val result = s1.head
// Display output
println(result)
}
}
输出:
12
示例 #2:
// Scala program of head()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(6, 7, 5, 4, 1)
// Applying head method
val result = s1.head
// Display output
println(result)
}
}
输出:
1