Initializer
init(bitPattern:)
Creates a new value with the bit pattern of the given pointer.
与えられたポインタのビットパターンで新しい値を作成します。
Technology
- Swift Standard Library
Swift標準ライブラリ
Parameters
パラメータ
pointer
The pointer to use as the source for the new integer.
新しい整数のためのソースとして使う値。
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
です。
See Also
参照
Working with Memory Addresses
メモリアドレスを扱う
init<P>(bitPattern: P?)
Creates a new value with the bit pattern of the given pointer.
与えられたポインタのビットパターンで新しい値を作成します。