Initializer

init(length:)

Initializes and returns a mutable data object containing a given number of zeroed bytes. 与えられた数のゼロ化されたバイトを含んでいる可変データオブジェクトを初期化して返します。

Declaration 宣言

init?(length: Int)

Parameters パラメータ

length

The number of bytes the object initially contains. オブジェクトが初めに含むバイトの数。

Return Value 戻り値

An initialized NSMutableData object containing length zeroed bytes. 初期化されたNSMutableDataオブジェクト、lengthのゼロ化バイトを含んでいます。

The returned object has the same memory alignment guarantees as malloc(_:). 返されるオブジェクトは、malloc(_:)と同じメモリアライメントを保証されます。

See Also 参照

Creating Mutable Data 可変データを作成する

Related Documentation 関連文書