命名空间
变体
操作

std::collate<CharT>::compare, std::collate<CharT>::do_compare

来自 cppreference.com
< cpp‎ | locale‎ | collate
 
 
 
 
定义在头文件 <locale>
public:

int compare( const CharT* low1, const CharT* high1,

             const CharT* low2, const CharT* high2 ) const;
(1)
protected:

virtual int do_compare( const CharT* low1, const CharT* high1,

                        const CharT* low2, const CharT* high2 ) const;
(2)
1) 公共成员函数,调用最派生类的受保护的虚成员函数 do_compare
2) 使用此区域设置的排序规则,比较字符序列 [low1high1) 与字符序列 [low2high2),如果第一个字符串在第二个字符串之后,返回 1,如果第一个字符串在第二个字符串之前,返回 -1,如果两个字符串相同,返回零。

内容

[编辑] 参数

low1 - 指向第一个字符串的第一个字符的指针
high1 - 第一个字符串的末尾指针之后的指针
low2 - 指向第二个字符串的第一个字符的指针
high2 - 第二个字符串的末尾指针之后的指针

[编辑] 返回值

如果第一个字符串大于第二个字符串(即,在排序顺序中位于第二个字符串之后),则为 1,如果第一个字符串小于第二个字符串(在排序顺序中位于第二个字符串之前),则为 -1,如果两个字符串相同,则为零。

[编辑] 说明

当不需要三方比较时(例如,当为标准算法(例如 std::sort)提供 Compare 参数时),std::locale::operator() 可能更合适。

排序顺序是字典顺序:字母在国家字母表中的位置(其等价类)优先于其大小写或变体。在一个等价类中,小写字母在对应的大写字母之前排序,并且针对带有变音符号的字符可能会应用特定于区域设置的顺序。在某些区域设置中,字符组以单个排序单元进行比较。例如,在捷克语中,"ch""h" 之后,在 "i" 之前,而在匈牙利语中,"dzs""dz" 之后,在 "g" 之前。

[编辑] 示例

#include <iostream>
#include <locale>
#include <string>
 
template<typename CharT>
void try_compare(const std::locale& l, const CharT* p1, const CharT* p2)
{
    auto& f = std::use_facet<std::collate<CharT>>(l);
 
    std::basic_string<CharT> s1(p1), s2(p2);
    if (f.compare(&s1[0], &s1[0] + s1.size(),
                  &s2[0], &s2[0] + s2.size()) < 0)
        std::wcout << p1 << " before " << p2 << '\n';
    else
        std::wcout << p2 << " before " << p1 << '\n';
}
 
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    std::wcout.imbue(std::locale());
 
    std::wcout << "In the American locale: ";
    try_compare(std::locale(), "hrnec", "chrt");
    std::wcout << "In the Czech locale: ";
    try_compare(std::locale("cs_CZ.utf8"), "hrnec", "chrt");
 
    std::wcout << "In the American locale: ";
    try_compare(std::locale(), L"år", L"ängel");
    std::wcout << "In the Swedish locale: ";
    try_compare(std::locale("sv_SE.utf8"), L"år", L"ängel");
}

输出

In the American locale: chrt before hrnec
In the Czech locale: hrnec before chrt
In the American locale: ängel before år
In the Swedish locale: år before ängel

[编辑] 另请参阅

根据当前区域设置比较两个字符串
(函数) [编辑]
根据当前区域设置比较两个宽字符串
(函数) [编辑]
使用此区域设置的排序方面按字典顺序比较两个字符串
(std::locale 的公共成员函数) [编辑]