共用方式為


locale::operator()

比較兩個 basic_string 物件。

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
    右側字串。

傳回值

成員函式會傳回:

  • – 1,如果第一個序列比第二個序列比較少。

  • +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

請參閱

參考

locale Class