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