Scala Char |(x: Int) 方法示例
|(x: Int)方法用于查找所述字符值的按位或,并在参数列表中给出“x”,该参数必须为整数。
Method Definition: def|(x: Int): Int
Return Type: It returns the bit-wise OR of the stated character value and given Integer “x”.
示例:1#
// Scala program of |(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying |(x: Int) method
val result = 'A'.|(5)
// Displays output
println(result)
}
}
输出:
69
示例:2#
// Scala program of |(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying |(x: Int) method
val result = 'A'.|(9)
// Displays output
println(result)
}
}
输出:
73