locale::operator()
Vergleicht zwei basic_string-Objekte.
template<Class CharType, class Traits, class Allocator>
bool operator()(
const basic_string<CharType, Traits, Allocator >& _Left,
const basic_string<CharType, Traits, Allocator >& _Right
) const;
Parameter
_Left
Die linke Zeichenfolge._Right
Die rechte Zeichenfolge.
Rückgabewert
Die Memberfunktionsrückgaben:
- 1, wenn die erste Sequenz kleiner als die zweite Sequenz vergleicht.
+1 wenn die zweite Sequenz kleiner als die erste Sequenz vergleicht.
0 Wenn die Sequenzen entsprechen.
Hinweise
Die Memberfunktion führt für aus:
const collate<CharType>& fac = use_fac<collate<CharType> >(*this);
return (fac.compare(_Left.begin( ),_Left.end( ),_Right.begin( ),_Right.end( )) < 0);
So können Sie ein Gebietsschemaobjekt als Funktionsobjekt verwenden.
Beispiel
// 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;
}
Anforderungen
Header: <locale>
Namespace: std