Scala ListSet min() 方法与示例
在 Scala ListSet 中,min() 方法用于查找所述列表中所有元素中的最小元素。
Method Definition: def min[B >: A](implicit ord: math.Ordering[B]): A
Return Type: It returns the smallest of all the elements in the stated listSet.
示例 1:
// Scala program of min()
// method
import scala.collection.immutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val m1 = ListSet(1, 2, 3)
// Applying min method
val result = m1.min
// Displays output
println(result)
}
}
输出:
1
示例 2:
// Scala program of min()
// method
import scala.collection.immutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val m1 = ListSet(1, 2, -3)
// Applying min method
val result = m1.min
// Displays output
println(result)
}
}
输出:
-3