📜  带有示例的 Scala Char >(x: Double) 方法

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

带有示例的 Scala Char >(x: Double) 方法

>(x: Double)方法用于查找所述字符值是否大于'x'。 'x' 的类型必须是 Double。

示例:1#

// Scala program of >(x: Double)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying >(x: Double) method 
        val result = 'D'.>(111.65785)
          
        // Displays output
        println(result)
      
    }
} 
输出:
false

示例:2#

// Scala program of >(x: Double)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying >(x: Double) method
        val result = 'D'.>(11.65785)
          
        // Displays output
        println(result)
      
    }
} 
输出:
true