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