Scala Char |(x: Byte) 方法示例
|(x: Byte)方法用于查找所述字符值的按位或,并在参数列表中给出“x”,它必须是字节类型。
Method Definition: def|(x: Byte): Byte
Return Type: It returns the bit-wise OR of the stated character value and given Byte type “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