Instance Property インスタンスプロパティ

pointee

Retrieve or set the Pointee instance referenced by self. selfによって参照されるPointeeインスタンスを回収または設定します。

Declaration 宣言

var pointee: Pointee { get nonmutating set }

Discussion 解説

AutoreleasingUnsafeMutablePointer is assumed to reference a value with __autoreleasing ownership semantics, like NSFoo ** declarations in ARC. Setting the pointee autoreleases the new value before trivially storing it in the referenced memory. AutoreleasingUnsafeMutablePointerは、__autoreleasing所有権意味論をもつ値を参照すると仮定されます、ARCにおけるNSFoo **宣言のような。pointeeを設定することは、新しい値をオートリリースします、それをその参照されたメモリの中に自明に格納する前に。

Precondition: the pointee has been initialized with an instance of type Pointee. 前提条件:pointeeが型Pointeeのインスタンスを使って初期化されていること。

See Also 参照

Accessing a Pointer's Memory ポインタの持つメモリにアクセスする