操作符
>>=(_:
>>=(_:_:)
将值的二进制表示向右移动指定位数的结果存储在左侧变量中。
声明
static func >>= <Other>(lhs: inout Self, rhs: Other) where Other : BinaryInteger
参数
lhs
要转移的值。
rhs
向右移动
lhs
的位数。
详述
>>=
运算符执行 smart shift
,它定义了任何值移位的结果。
-
使用
rhs
的负值使用abs(rhs)
执行左移。 -
使用大于或等于
lhs
位宽的rhs
的值是overshift
。对于负值lhs
或0
对于非负值,过度移位会导致-1
。 -
对
rhs
使用任何其他值都会对lhs
执行该量的右移。
以下示例将 x
定义为 UInt8
的一个实例,这是一个 8 位无符号整数类型。如果在对 x
的操作中使用 2
作为右侧值,则该值将右移两位。
var x: UInt8 = 30 // 0b00011110
x >>= 2
// x == 7 // 0b00000111
如果将 11
用作 rhs
,则 x
会过度移位,使其所有位都设置为零。
var y: UInt8 = 30 // 0b00011110
y >>= 11
// y == 0 // 0b00000000
使用负值作为 rhs
与使用 abs(rhs)
执行左移相同。
var a: UInt8 = 30 // 0b00011110
a >>= -3
// a == 240 // 0b11110000
var b: UInt8 = 30 // 0b00011110
b <<= 3
// b == 240 // 0b11110000
对负值进行右移操作 “fill in” 用 1 代替 0 的高位。
var q: Int8 = -30 // 0b11100010
q >>= 2
// q == -8 // 0b11111000
var r: Int8 = -30 // 0b11100010
r >>= 11
// r == -1 // 0b11111111
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Int16 >>(_:_:)用法及代码示例
- Swift Int16 ..<(_:)用法及代码示例
- Swift Int16 random(in:using:)用法及代码示例
- Swift Int16 ^=(_:_:)用法及代码示例
- Swift Int16 init(_:radix:)用法及代码示例
- Swift Int16 +(_:)用法及代码示例
- Swift Int16 magnitude用法及代码示例
- Swift Int16 %(_:_:)用法及代码示例
- Swift Int16 /=(_:_:)用法及代码示例
- Swift Int16 <<=(_:_:)用法及代码示例
- Swift Int16 init(truncatingIfNeeded:)用法及代码示例
- Swift Int16 <<(_:_:)用法及代码示例
- Swift Int16 random(in:)用法及代码示例
- Swift Int16 ...(_:)用法及代码示例
- Swift Int16 init(_:)用法及代码示例
- Swift Int16 init(clamping:)用法及代码示例
- Swift Int16 *(_:_:)用法及代码示例
- Swift Int16 &-=(_:_:)用法及代码示例
- Swift Int16 quotientAndRemainder(dividingBy:)用法及代码示例
- Swift Int16 |(_:_:)用法及代码示例
- Swift Int16 -(_:_:)用法及代码示例
- Swift Int16 ^(_:_:)用法及代码示例
- Swift Int16 &*(_:_:)用法及代码示例
- Swift Int16 &<<(_:_:)用法及代码示例
- Swift Int16 init(exactly:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Int16 >>=(_:_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。