📜  Scala Char |(x: Byte) 方法示例

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

Scala Char |(x: Byte) 方法示例

|(x: Byte)方法用于查找所述字符值的按位或,并在参数列表中给出“x”,它必须是字节类型。

示例:1#

// Scala program of |(x: Byte)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying |(x: Byte) method 
        val result = 'B'.|(121)
          
        // Displays output
        println(result)
      
    }
} 
输出:
123

示例:2#

// Scala program of |(x: Byte)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying |(x: Byte) method
        val result = 'B'.|(-128)
          
        // Displays output
        println(result)
      
    }
} 
输出:
-62