名前空間
変種
操作

「cpp/string/char traits/compare」の版間の差分

提供: cppreference.com
< cpp‎ | string‎ | char traits
(Translated from the English version using Google Translate)
 
(1版:Translate from the English version)

2012年10月30日 (火) 20:42時点における版

int compare( const CharT* lhs, const CharT* rhs, std::size_t count );
文字列の最初のcountの文字を比較lhsrhs。比較は辞書順で行われ.
Original:
Compares the first count characters of the character strings 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.

目次

パラメータ

lhs, rhs -
比較する文字列へのポインタ
Original:
pointers to character strings 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:
the number of characters to compare from each character string
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.
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.
正の値の場合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.

例外

(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

複雑

リニア.
Original:
Linear.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.