Instance Method
インスタンスメソッド
getBytes:
Copies a data object’s contents into a given buffer.
あるデータオブジェクトの内容をある与えられたバッファに複製します。
Declaration
宣言
- (void)getBytes:(void *)buffer;
Parameters
パラメータ
buffer
A buffer into which to copy the receiver's data. The buffer must be at least length
bytes.
それへとレシーバの持つデータを複製することになるバッファ。バッファは、少なくともlength
バイトでなければなりません。
Discussion
議論
You can see a sample using this method in Working With Binary Data.
あなたは、このメソッドを使う見本をWorking With Binary Dataで見ることができます。
See Also
参照
Accessing Underlying Bytes
基礎をなすバイトにアクセスする
bytes
A pointer to the data object's contents.
データオブジェクトの内容に対するポインタ。
- getBytes:length:
Copies a number of bytes from the start of the data object into a given buffer.
データオブジェクトの始まりからあるバイト数をある与えられたバッファに複製します。
- 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進数表現を含みます。