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