CException::`VC 中的 RTTI 完整对象定位器++应用
您好,
我的 VC++ 应用程序中似乎偶尔会遇到 CException::`RTTI 完整对象定位器异常。
你们中有人知道为什么会发生这种特殊的异常吗?
我在调用 GetLocaleInfo() WINDOWS API 时收到此消息。
任何帮助都会很棒。
谢谢
HI
I seem to be getting an CException::`RTTI Complete Object Locator exception once in a while in my VC++ application.
Does any of u know why this particular exception occurs.
i get this when calling the GetLocaleInfo() WINDOWS API.
Any help would be great.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用堆栈已损坏。更高版本的 Visual C++ 在堆栈上的变量之间注入“cookie”以检测覆盖。您可能需要升级到新版本的 Visual C++ 以使编译器为您提供帮助。
否则很难抓到腐败行为。使用单元测试来隔离错误。增加数据完整性验证的频率。
The call stack is corrupted. Higher version of Visual C++ injects "cookies" between variables on the stack to detect overwrites. You may want to upgrade to a new version of Visual C++ to have the compiler help you.
Otherwise it is very hard to catch the corruption. Use unit test to isolate bug. Increase the frequency of your data integrity validation.