The amount of memory to allocate, counted in instances of Element
.
アロケートするメモリの総量、Element
のインスタンスで数えられます。
Type Method
型メソッド
allocate(capacity:)
Allocates uninitialized memory for the specified number of instances of type
Element
.
指定された数の型Element
のインスタンスに対して未初期化メモリを割り当てます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func allocate(capacity count: Int
) -> UnsafeMutableBufferPointer
<Element>
Parameters パラメータ
count
Discussion 解説
The resulting buffer references a region of memory that is bound to Element
and is count * Memory
bytes in size.
結果のバッファはあるメモリ領域を参照します、それはElement
に束縛されます、そしてcount * Memory
バイトの大きさです。
The following example allocates a buffer that can store four Int
instances and then initializes that memory with the elements of a range:
以下の例は、4つのInt
インスタンスを格納できるあるバッファをアロケートして、それからそのメモリをある範囲に属するいくらかの要素で初期化します。
When you allocate memory, always remember to deallocate once you’re finished. あなたがメモリをアロケートする場合、あなたがやり終えるやいなやデアロケートするのを常に忘れないでください。