Instance Method
インスタンスメソッド
getBytes:length:
Copies a number of bytes from the start of the data object into a given buffer.
データオブジェクトの始まりからあるバイト数をある与えられたバッファに複製します。
Declaration
宣言
- (void)getBytes:(void *)buffer
length:(NSUInteger
)length;
Parameters
パラメータ
buffer
A buffer into which to copy data.
それへとデータを複製することになるあるバッファ。
length
The number of bytes from the start of the receiver's data to copy to buffer
.
buffer
に複製することになる、レシーバの持つデータの始まりからのバイト数。
Discussion
議論
The number of bytes copied is the smaller of the length
parameter and the length
of the data encapsulated in the object.
複製されるバイト数は、length
パラメータと、オブジェクトにカプセル化されるデータのlength
のより短い方です。
See Also
参照
Accessing Underlying Bytes
基礎をなすバイトにアクセスする
bytes
A pointer to the data object's contents.
データオブジェクトの内容に対するポインタ。
- getBytes:
Copies a data object’s contents into a given buffer.
あるデータオブジェクトの内容をある与えられたバッファに複製します。
Deprecated
非推奨
- getBytes:range:
Copies a range of bytes from the data object into a given buffer.
データオブジェクトからあるバイトの範囲をある与えられたバッファに複製します。
Related Documentation
関連文書
description
A string that contains a hexadecimal representation of the data object’s contents in a property list format.
ある文字列、それはプロパティリスト形式でのデータオブジェクトの内容の16進数表現を含みます。