locale::operator()
basic_string の 2 種類のオブジェクトを比較します。
template<Class CharType, class Traits, class Allocator>
bool operator()(
const basic_string<CharType, Traits, Allocator >& _Left,
const basic_string<CharType, Traits, Allocator >& _Right
) const;
パラメーター
_Left
左側の文字列。_Right
右側の文字列。
戻り値
メンバー関数の戻り値:
最初のシーケンスを比較する 2 番目のシーケンスよりも少ない –1。
2 番目のシーケンスが最初のシーケンスを比較する場合よりも小さい +1。
シーケンスが同じである場合は 0。
解説
メンバー関数は効率的に実行します:
const collate<CharType>& fac = use_fac<collate<CharType> >(*this);
return (fac.compare(_Left.begin( ),_Left.end( ),_Right.begin( ),_Right.end( )) < 0);
したがって、関数オブジェクトとしてロケール オブジェクトを使用できます。
使用例
// locale_op_compare.cpp
// compile with: /EHsc
#include <iostream>
#include <string>
#include <locale>
int main( )
{
using namespace std;
wchar_t *sa = L"ztesting";
wchar_t *sb = L"\0x00DFtesting";
basic_string<wchar_t> a( sa );
basic_string<wchar_t> b( sb );
locale loc( "German_Germany" );
cout << loc( a,b ) << endl;
const collate<wchar_t>& fac = use_facet<collate<wchar_t> >( loc );
cout << ( fac.compare( sa, sa + a.length( ),
sb, sb + b.length( ) ) < 0) << endl;
}
必要条件
ヘッダー: <locale>
名前空間: std