The pointer to use as the source for the new integer. 新しい整数のためのソースとして使う値。
Initializerinit(bit
init(bitPattern:)
Creates a new value with the bit pattern of the given pointer.
与えられたポインタのビットパターンで新しい値を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(bitPattern pointer: OpaquePointer
?)
Parameters パラメータ
pointer
Discussion 解説
The new value represents the address of the pointer passed as pointer
. If pointer
is nil
, the result is 0
.
新しい値は、pointer
として渡されるポインタのアドレスを表します。pointer
がnil
ならば、結果は0
です。