带有示例的 Scala SortedSet min() 方法
min() 方法用于查找所述列表中所有元素中的最小元素。
Method Definition: def min: A
Return Type: It returns the smallest of all the elements in the stated list.
示例 #1:
// Scala program of min()
// 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)
// Applying min method
val result = s1.min
// Display output
println(result)
}
}
输出:
1
示例 #2:
// Scala program of min()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(5, 11, 23, 72, 14, 21, 118)
// Applying min method
val result = s1.min
// Display output
println(result)
}
}
输出:
5