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