操作符
~(_:)
返回參數中設置的位的倒數。
聲明
static func ~ (x: Self) -> Self
詳述
按位非運算符 (~
) 是一個前綴運算符,它返回一個值,在該值中其參數的所有位都被翻轉:參數中為 1
的位在結果中為 0
;並且參數中為0
的位在結果中為1
。這相當於集合的逆。例如:
let x: UInt8 = 5 // 0b00000101
let notX = ~x // 0b11111010
對 0 執行按位非運算會返回一個值,每個位都設置為 1
。
let allOnes = ~UInt8.min // 0b11111111
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相關用法
- 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 >>(_:_:)用法及代碼示例
- 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 ~(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。