>>
方法(或属性)属于 scala.Int
类(class),其相关用法说明如下。
用法 一
def >>(x: Int): Long
由int2long 隐式添加
返回此值 bit-shifted 右侧指定的位数,并用与该值最左侧位相同的值填充左侧位。这样做的效果是保留值的符号。
例子:
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
源码:
- Long.scala
用法 二
def >>(x: Long): Long
由int2long 隐式添加
返回此值 bit-shifted 右侧指定的位数,并用与该值最左侧位相同的值填充左侧位。这样做的效果是保留值的符号。
例子:
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
源码:
- Long.scala
用法 三
def >>(x: Int): Int
返回此值 bit-shifted 右侧指定的位数,并用与该值最左侧位相同的值填充左侧位。这样做的效果是保留值的符号。
例子:
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
源码:
- Int.scala
@deprecated(“不推荐将值移动 `Long` 参数(除非该值为 `Long`)。\n调用参数上的 `toInt` 以保持当前行为并避免弃用警告。”, "2.12.7")
用法 四
def >>(x: Long): Int
返回此值 bit-shifted 右侧指定的位数,并用与该值最左侧位相同的值填充左侧位。这样做的效果是保留值的符号。
例子:
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
已弃用
源码:
- Int.scala
相关用法
- Scala Int.>>>用法及代码示例
- Scala Int.orElseBy用法及代码示例
- Scala Int.<<用法及代码示例
- Scala Int.orElse用法及代码示例
- Scala Int.^用法及代码示例
- Scala Int.&用法及代码示例
- Scala Int.unary_~用法及代码示例
- Scala Int.|用法及代码示例
- 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.>>。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。