CException::`VC 中的 RTTI 完整对象定位器++应用

发布于 2024-08-12 20:24:19 字数 177 浏览 3 评论 0原文

您好,

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野稚 2024-08-19 20:24:19

调用堆栈已损坏。更高版本的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文