我尝试了解如何使用boost :: locale来比较忽略大小写和变体的字符串。我直接尝试了Boost文档中的代码:
http://www.boost.org/doc/libs/1_51_0/libs/locale/doc/html/collation.html
boost::locale::generator gen;
std::locale vLocale = gen("");
std::wstring a=L"Façade", b=L"facade";
// Following will throw bad_cast
bool eq = std::use_facet<boost::locale::collator<wchar_t>>(vLocale).compare(
boost::locale::collator_base::secondary,
a,
b
) == 0;
if(eq) std::cout << "OK" << std::endl;
此代码在运行时会抛出std :: bad_cast异常。 我在boost :: locale :: generator的构造函数中尝试了很多参数。有没有人知道我遇到的问题?
我正在使用C ++ 11和g ++ 4.6以及Boost 1.51.0
答案 0 :(得分:5)
您似乎使用了错误的区域设置对象。您应该首先使用全局区域设置,然后(如果要使用cout)将区域设置灌输到流中。 Somethig喜欢这样:
boost::locale::generator gen;
std::locale loc = gen("");
std::locale::global(loc);
但是在你的例子中,如果你不使用cout,只需设置全局语言环境,以便你需要使用facet。