typealias UnsafeRawPointer.Stride
Overview 概要
The Unsafe
type provides no automated memory management, no type safety, and no alignment guarantees. You are responsible for handling the life cycle of any memory you work with through unsafe pointers, to avoid leaks or undefined behavior.
Unsafe
型は、自動メモリ管理、型安全、そしてアライメント保証を提供しません。あなたは、リークや未定義挙動を避けるために、あなたが安全でないポインタを通して扱うあらゆるメモリの生涯の処理に責任があります。
Memory that you manually manage can be either untyped or bound to a specific type. You use the Unsafe
type to access and manage raw bytes in memory, whether or not that memory has been bound to a specific type.
あなたが手動で管理するメモリは、特定の型に対して型付けされないまたは束縛されるのいずれかが可能です。あなたは、Unsafe
型を使ってメモリ中の生のバイトにアクセスおよび管理を、そのメモリが特定の型に束縛されているかどうかにかかわらず行います。
Understanding a Pointer’s Memory State あるポインタのメモリ状態を理解する
The memory referenced by an Unsafe
instance can be in one of several states. Many pointer operations must only be applied to pointers with memory in a specific state—you must keep track of the state of the memory you are working with and understand the changes to that state that different operations perform. Memory can be untyped and uninitialized, bound to a type and uninitialized, or bound to a type and initialized to a value. Finally, memory that was allocated previously may have been deallocated, leaving existing pointers referencing unallocated memory.
Unsafe
インスタンスによって参照されるメモリは、幾つかの状態のうち1つであるはずです。多くのポインタ演算はある特定の状態のメモリを持つポインタに適用されるだけであるべきです — あなたは、あなたが作業しているメモリの状態を見失わないようにして、異なる演算が実行するその状態の変更を理解していなければなりません。メモリは、型無しで未初期化、ある型に束縛されて未初期化、またはある型に束縛されてある値に初期化される可能性があります。結局、以前にアロケートされたメモリはデアロケートされるかもしれません、アロケートされないメモリを参照している既存のポインタはそのままです。
Raw, Uninitialized Memory 生の、初期化されないメモリ
Raw memory that has just been allocated is in an uninitialized, untyped state. Uninitialized memory must be initialized with values of a type before it can be used with any typed operations. アロケートされてすぐの生のメモリは、初期化されない、型付けされない状態にあります。未初期化メモリは、それが何らかの型付き演算で使用される前にある型の値で初期化されなければなりません。
To bind uninitialized memory to a type without initializing it, use the bind
method. This method returns a typed pointer for further typed access to the memory.
未初期化メモリをそれを初期化することなくある型に束縛するには、bind
メソッドを使用してください。このメソッドは、この後で型付アクセスをこのメモリにするために型付ポインタを返します
Typed Memory 型付メモリ
Memory that has been bound to a type, whether it is initialized or uninitialized, is typically accessed using typed pointers—instances of Unsafe
and Unsafe
. Initialization, assignment, and deinitialization can be performed using Unsafe
methods.
ある型に束縛されているメモリは、それが初期化済みか未初期化かにかかわらず、一般的に型付ポインタを使ってアクセスされます — Unsafe
およびUnsafe
ではなくて。初期化、代入、そしてデイニシャライズは、Unsafe
メソッドを使って実行されます。
Memory that has been bound to a type can be rebound to a different type only after it has been deinitialized or if the bound type is a trivial type. Deinitializing typed memory does not unbind that memory’s type. The deinitialized memory can be reinitialized with values of the same type, bound to a new type, or deallocated. ある型に束縛されているメモリは、それがデイニシャライズされた後にまたは束縛型がtrivial typeである場合にのみ、異なる型に再束縛が可能です。型付メモリのデイニシャライズは、そのメモリの型を束縛解除しません。デイニシャライズされたメモリは、同じ型の値で再初期化する、新しい型に束縛する、またはデアロケートできます。
Note 注意
A trivial type can be copied bit for bit with no indirection or reference-counting operations. Generally, native Swift types that do not contain strong or weak references or other forms of indirection are trivial, as are imported C structs and enumerations. 自明な型は、ビット対ビットでコピーされることが、何らかの間接参照または参照カウント操作なしで可能です。一般に、生粋のSwift型で強いまたは弱い参照または他形式の間接参照を含まないものは自明です、インポートされたCの構造体と列挙のように。
When reading from memory as raw bytes when that memory is bound to a type, you must ensure that you satisfy any alignment requirements. メモリから読み出しをそのメモリがある型に束縛される時に生のバイトとして行う場合、あなたがあらゆるアライメント要件を満たすことを確実にしなければなりません。
Raw Pointer Arithmetic 生のポインタ算術
Pointer arithmetic with raw pointers is performed at the byte level. When you add to or subtract from a raw pointer, the result is a new raw pointer offset by that number of bytes. The following example allocates four bytes of memory and stores 0x
in all four bytes:
生のポインタを使うポインタ算術は、バイト水準で実行されます。あなたが生のポインタに加算または減算する時、結果はそのバイト数をオフセットした(補った、埋め合わせた)新しい生のポインタです。以下の例は、4バイトのメモリをアロケートして0x
を4バイトすべての中に格納します:
The code above stores the value 0x
into the four newly allocated bytes, and then loads the first byte as a UInt8
instance and the third and fourth bytes as a UInt16
instance.
上のコードは値0x
を4つの新しいアロケート済みバイトに格納して、それから最初のバイトをUInt8
インスタンスとして、そして3番目と4番目のバイトをUInt16
インスタンスとしてロードします。
Always remember to deallocate any memory that you allocate yourself. あなたがあなた自身でアロケートするメモリは何であれデアロケートするのを必ず忘れないでください。
Implicit Casting and Bridging 暗黙的なキャストとブリッジ
When calling a function or method with an Unsafe
parameter, you can pass an instance of that specific pointer type, pass an instance of a compatible pointer type, or use Swift’s implicit bridging to pass a compatible pointer.
関数やメソッドをUnsafe
パラメータとともに呼び出すとき、あなたはその特定のポインタ型のインスタンスを渡す、互換ポインタ型のインスタンスを渡す、またはSwiftの暗黙的ブリッジを使って互換ポインタを渡すことが可能です。
For example, the print(address:
function in the following code sample takes an Unsafe
instance as its first parameter:
例えば、print(address:
関数は以下のコード例において、Unsafe
インスタンスをそれの最初のパラメータとして取ります。
As is typical in Swift, you can call the print(address:
function with an Unsafe
instance. This example passes raw
as the initial parameter.
Swiftでは普通であるように、あなたはprint(address:
関数をUnsafe
インスタンスとともに呼び出せます。この例は、raw
を最初のパラメータとして渡します。
Because typed pointers can be implicitly cast to raw pointers when passed as a parameter, you can also call print(address:
with any mutable or immutable typed pointer instance.
型付ポインタは暗黙的に生のポインタにキャストされることがパラメータとして渡される時に可能なことから、あなたはまたprint(address:
を何らかの可変または不変の型付ポインタとともに呼び出せます。
Alternatively, you can use Swift’s implicit bridging to pass a pointer to an instance or to the elements of an array. Use inout syntax to implicitly create a pointer to an instance of any type. The following example uses implicit bridging to pass a pointer to value
when calling print(address:
:
あるいはまた、あなたはSwiftの暗黙的ブリッジを使ってポインタをインスタンスへまたは配列の要素へと渡せます。インアウト構文を使って、任意の型のインスタンスへのポインタを暗黙的に作成してください。以下の例は、print(address:
を呼び出すとき、暗黙的ブリッジを使ってポインタをvalue
へと渡します:
An immutable pointer to the elements of an array is implicitly created when you pass the array as an argument. This example uses implicit bridging to pass a pointer to the elements of numbers
when calling print(address:
.
配列の要素への不変ポインタは、あなたが配列を引数として渡す時に暗黙的に作成されます。この例は、print(address:
を呼び出す時に、暗黙的ブリッジを使ってnumbers
の要素へのポインタを渡します。
You can also use inout syntax to pass a mutable pointer to the elements of an array. Because print(address:
requires an immutable pointer, although this is syntactically valid, it isn’t necessary.
あなたはまた、インアウト構文を使って、可変ポインタを配列の要素へ渡せます。print(address:
が不変ポインタを要求することから、これは構文的には有効ですが、必要ではありません。
Important 重要
The pointer created through implicit bridging of an instance or of an array’s elements is only valid during the execution of the called function. Escaping the pointer to use after the execution of the function is undefined behavior. In particular, do not use implicit bridging when calling an Unsafe
initializer.
インスタンスのまたは配列の要素の暗黙的ブリッジを通して作成されるポインタは、呼び出された関数の実行の間に有効であるだけです。関数の実行の後に使うためにポインタを脱出させることは、未定義の挙動となります。とりわけ、暗黙的ブリッジをUnsafe
イニシャライザを呼ぶ時に使わないでください。