>>
方法(或屬性)屬於 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.>>。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。