c – std :: string的区域设置相关顺序

前端之家收集整理的这篇文章主要介绍了c – std :: string的区域设置相关顺序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图以区域设置相关的方式比较std :: strings.

对于普通的C风格的字符串,我发现了strcoll,这样做完全是我想要的,在做了std :: setlocale之后

#include <iostream>
#include <locale>
#include <cstring>

bool cmp(const char* a,const char* b)
{
    return strcoll(a,b) < 0;
}

int main()
{
    const char* s1 = "z",*s2 = "å",*s3 = "ä",*s4 = "ö";

    std::cout << (cmp(s1,s2) && cmp(s2,s3) && cmp(s3,s4)) << "\n"; //Outputs 0
    std::setlocale(LC_ALL,"sv_SE.UTF-8");
    std::cout << (cmp(s1,s4)) << "\n"; //Outputs 1,like it should

    return 0;
}

但是,我也想为std :: string这样做.我可以只是重载操作符<做某事

bool operator<(const std::string& a,const std::string& b)
{
    return strcoll(a.c_str(),b.c_str());
}

但是我不得不担心使用std :: less和std :: string :: compare的代码,所以感觉不对.

有没有办法使这种排序规则以无缝的方式进行字符串的工作?

解决方法

std :: locale的operator()只是你正在搜索内容.要获取当前的全局区域设置,只需使用默认构造函数即可.
原文链接:https://www.f2er.com/c/113159.html

猜你在找的C&C++相关文章