std::memcmp
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cstring>
|
||
int memcmp( const void* lhs, const void* rhs, std::size_t count ); |
||
count
とlhs
が指すオブジェクトの最初のrhs
の文字を比較します。比較は辞書順で行われ.Original:
Compares the first
count
characters of the objects pointed to by lhs
and rhs
. The comparison is done lexicographically.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
lhs, rhs | - | メモリへのポインタは、比較するためにバッファリングします
Original: pointers to the memory buffers to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
count | - | 検査するバイト数
Original: number of bytes to examine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
lhs
場合は、負の値は'rhs
より小さい.Original:
Negative value if
lhs
is less than rhs
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
0場合
lhs
です等しいrhs
.Original:
0 if
lhs
is equal to rhs
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
正の値の場合
lhs
'より大きいrhs
.Original:
Positive value if
lhs
is greater than rhs
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
This section is incomplete Reason: no example |
[編集] 参照
2つの文字列を比較する Original: compares two strings The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
二つの文字列の文字の一定額を比較します Original: compares a certain amount of characters of two strings The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
C documentation for memcmp
|