带有示例的 Scala Short min() 方法
min()方法用于查找两个指定的 Short 类型中的最小值。
Method Definition: def min(that: Short): Short
Return Type: It returns the number of type Short with the minimum value.
示例:1#
// Scala program of min()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying min() method
val result = (1000).min(998)
// Displays output
println(result)
}
}
输出:
998
示例:2#
// Scala program of min()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying min() method
val result = (445).min(1000)
// Displays output
println(result)
}
}
输出:
445