我一直在努力学习Boost.Locale
模块。考虑this示例。代码被成功编译但是当我尝试运行它时,它会给出错误
Unhandled exception at 0x74d34b32 in LearningCPP.exe: Microsoft C++ exception: std::bad_cast at memory location 0x00a6fa48..
我也附上了程序的堆栈跟踪。这是:
KernelBase.dll!74d34b32()
[Frames below may be incorrect and/or missing, no symbols loaded for KernelBase.dll]
KernelBase.dll!74d34b32()
> msvcr100d.dll!_nh_malloc_dbg(unsigned int nSize, int nhFlag, int nBlockUse, const char * szFileName, int nLine) Line 302 + 0x1d bytes C++
msvcr100d.dll!malloc(unsigned int nSize) Line 56 + 0x15 bytes C++
LearningCPP.exe!std::use_facet<boost::locale::converter<char> >(const std::locale & _Loc) Line 526 C++
LearningCPP.exe!boost::locale::to_upper<char>(const char * str, const std::locale & loc) Line 225 + 0x9 bytes C++
LearningCPP.exe!main() Line 170 + 0xc4 bytes C++
LearningCPP.exe!__tmainCRTStartup() Line 555 + 0x19 bytes C
LearningCPP.exe!mainCRTStartup() Line 371 C
kernel32.dll!75268543()
ntdll.dll!776bac69()
ntdll.dll!776bac3c()
在Boost.Locale
中使用Visual Studio 2010
时是否有人遇到此问题?如果是这样,我该如何解决这个问题?
PS:我在Visual Studio的Use Unicode Character Set
选项下使用了选项Character Set
。我相信这些库也是正确链接的。