📜  带有示例的 Scala Int >=(x: Short) 方法

📅  最后修改于: 2022-05-13 01:54:52.480000             🧑  作者: Mango

带有示例的 Scala Int >=(x: Short) 方法

>=(x: Short)方法用于如果指定的 int 值大于或等于 short 值则返回 true,否则返回 false。

示例 #1:

// Scala program of Int >=(x: Short)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying Int >=(x: Short) function
        val result = (66).>=(55)
          
        // Displays output
        println(result)
      
    }
} 
输出:
true

示例 #2:

// Scala program of Int >=(x: Short)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying Int >=(x: Short) function
        val result = (50).>=(60)
          
        // Displays output
        println(result)
      
    }
} 
输出:
false