Initializer
init(bytesNoCopy:length:)
Initializes a data object filled with a given number of bytes of data from a given buffer.
与えられたバッファからの、与えられたバイト数のデータで満たされたデータオブジェクトを初期化します。
Parameters
パラメータ
bytes
A buffer containing data for the new object. bytes
must point to a memory block allocated with malloc
.
新しいオブジェクトに対するデータを含んでいるバッファ。bytes
は、malloc
を使ってアロケートされるメモリブロックを指し示さなければなりません。
length
The number of bytes to hold from bytes
. This value must not exceed the length of bytes
.
bytes
から保持することになるバイト数。この値は、bytes
の長さを越えてはなりません。
Return Value
戻り値
A data object initialized by adding to it length
bytes of data from the buffer bytes
. The returned object might be different than the original receiver.
それにlength
バイトのデータをバッファbytes
から追加することによって初期化されるデータオブジェクト。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
Discussion
議論
The returned object takes ownership of the bytes
pointer and frees it on deallocation. Therefore, bytes
must point to a memory block allocated with malloc
.
返されるオブジェクトは、bytes
ポインタの所有権を取ります、そしてそれをデアロケーションで自由にします。それゆえ、bytes
はmalloc
を使ってアロケートされるメモリブロックを指し示さなければなりません。
See Also
参照
Creating Data
データを作成する
init(data: Data)
Initializes a data object with the contents of another data object.
あるデータオブジェクトを別のデータオブジェクトの内容で初期化します。
Related Documentation
関連文書
+ dataWithBytes:length:
Creates a data object containing a given number of bytes copied from a given buffer.
ある与えられたバッファから複製されるある与えられた数のバイトを含んでいるデータオブジェクトを作成します。