|
方法(或属性)属于 scala.Int
类(class),其相关用法说明如下。
用法 一
def |(x: Byte): Long
由int2long 隐式添加
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Long.scala
用法 二
def |(x: Short): Long
由int2long 隐式添加
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Long.scala
用法 三
def |(x: Char): Long
由int2long 隐式添加
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Long.scala
用法 四
def |(x: Int): Long
由int2long 隐式添加
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Long.scala
用法 五
def |(x: Long): Long
由int2long 隐式添加
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Long.scala
用法 六
def |(x: Byte): Int
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Int.scala
用法 七
def |(x: Short): Int
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Int.scala
用法 八
def |(x: Char): Int
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Int.scala
用法 九
def |(x: Int): Int
返回此值和 x
的按位或.
例子:
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
源码:
- Int.scala
相关用法
- Scala Int.>>用法及代码示例
- Scala Int.>>>用法及代码示例
- Scala Int.orElseBy用法及代码示例
- Scala Int.<<用法及代码示例
- Scala Int.orElse用法及代码示例
- Scala Int.^用法及代码示例
- Scala Int.&用法及代码示例
- Scala Int.unary_~用法及代码示例
- Scala Int.on用法及代码示例
- Scala IntMap.groupMap用法及代码示例
- Scala Int toInt()用法及代码示例
- Scala Integral.on用法及代码示例
- Scala IntOrdering.on用法及代码示例
- Scala IntMap.transpose用法及代码示例
- Scala Integral.orElse用法及代码示例
- Scala Int doubleValue()用法及代码示例
- Scala IntAccumulator.addString用法及代码示例
- Scala Int compare()用法及代码示例
- Scala IntIsIntegral.orElse用法及代码示例
- Scala IntAccumulator.elementWise用法及代码示例
- Scala Int max()用法及代码示例
- Scala IntIsIntegral.orElseBy用法及代码示例
- Scala Int isValidChar()用法及代码示例
- Scala IntAccumulator.appended用法及代码示例
- Scala Int toShort()用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Int.|。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。