在Win 7 64位和VS2010上提升1.54 x64。编译为“Release x64”并运行以下代码:
#include <boost/locale/conversion.hpp>
std::wstring y = L"NoNseNSE";
std::wstring w = boost::locale::to_lower(y);
抛出std::bad_cast
例外。添加后没有任何变化(如其他地方所示):
std::locale mylocale("");
std::locale::global(mylocale);
或将to_lower(y)
更改为:to_lower(y, mylocale)
或使用std::string
代替std::wstring
或在环境中设置LANG。
目标是转换为小写意大利语UTF-8字。我没有找到这样的问题,所以我认为这是我的机器特定问题或升级库问题。顺便说一下,我从sourceforge下载了预编译的boost库(boost_1_54_0-msvc-10.0-64.exe)。任何的想法? 谢谢! 马里奥
答案 0 :(得分:6)
当您的语言环境传递给boost::locale::to_lower
(默认情况下为std::locale()
,即全局语言环境的副本)没有安装boost::locale::converter
方面时,会抛出此异常。 See this for the related documentation.
使用boost::locale::generator
代替创建区域设置。 (另请参阅文档链接的示例,例如this one。)