VC编译错误:Cannot use __try in functions that require object unwinding

本文探讨了在C++中使用__try/__except进行异常处理时遇到的errorC2712错误,并提供了解决方案,即将异常处理代码放入独立函数中。此外,还介绍了使用MiniDumpWriteDump函数记录崩溃信息的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

误提示:error C2712: Cannot use __try in functions that require object unwinding

代码段:

......

__try {
  RaiseException(EXCEPTION_BREAKPOINT, 0, 0, NULL);
   } __except(...){}

......

解决办法,将异常捕获的代码段放到一个单独的函数中,即:

Catchept()

{

__try {
  RaiseException(EXCEPTION_BREAKPOINT, 0, 0, NULL);
   } __except(...){}

}

然后调用:

......

Catchept();

......

 

详细参看:http://www.cppblog.com/jolleydtan/archive/2008/06/11/52843.html

error C2712: Cannot use __try in functions that require object unwinding

游戏中经常会出现崩溃地址的情况,这让我很恼火,在网络上面看到了一些处理方法,主要有这几种: 1)map file,2) crashFinder,3)BoundsChecker,4)dump文件,主要是这些信息,现在主要说明第四种方法的处理.

这种方法主要是用一个MiniDumpWriteDump函数将信息写入到dmp文件里面去,以及系统的宏__try,和__except.在__except里面就进行异常的处理-写MiniDumpWriteDump函数.

今天在写好了一个小demo之后,想将他移植到游戏工程里面去的时候,发现一个很诡异的做法:

error C2712: Cannot use __try in functions that require object unwinding

感觉很惊讶,

后来在网络上面查找了一些资料,主要涉及到几个点:命令参数(GX,SEH,EHSc),

GX-允许异常处理.SEH-结构化异常处理,EHSc-

http://msdn.microsoft.com/en-us/library/1deeycx5(VS.80).aspx

详细的情况请查阅MSDN.

因为这样C++和SEH的东西(__try/__except)不能混淆起来,所以将他在另外一个函数里面给出来.

http://www.codeguru.com/forum/archive/index.php/t-199810.html

http://www.codeproject.com/KB/cpp/exception.aspx

http://msdn.microsoft.com/en-us/library/xwtb73ad(VS.80).aspx

 

 

index.js:4130 Cannot find module './uni_modules/uview-ui/components/u-navbar/u-navbar.vue' Qld0 @ index.js:4130 __webpack_require__ @ index.js:854 fn @ index.js:151 JLrY @ index.js:1430 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ kyBj:2 kyBj @ index.js:4897 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ main.js:36 Tglg @ index.js:4322 __webpack_require__ @ index.js:854 fn @ index.js:151 1 @ index.js:1057 __webpack_require__ @ index.js:854 checkDeferredModules @ index.js:46 (anonymous) @ index.js:994 (anonymous) @ index.js:997 index.js:4131 1. 排查组件名称拼写是否正确 Qld0 @ index.js:4131 __webpack_require__ @ index.js:854 fn @ index.js:151 JLrY @ index.js:1430 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ kyBj:2 kyBj @ index.js:4897 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ main.js:36 Tglg @ index.js:4322 __webpack_require__ @ index.js:854 fn @ index.js:151 1 @ index.js:1057 __webpack_require__ @ index.js:854 checkDeferredModules @ index.js:46 (anonymous) @ index.js:994 (anonymous) @ index.js:997 index.js:4132 2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom Qld0 @ index.js:4132 __webpack_require__ @ index.js:854 fn @ index.js:151 JLrY @ index.js:1430 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ kyBj:2 kyBj @ index.js:4897 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ main.js:36 Tglg @ index.js:4322 __webpack_require__ @ index.js:854 fn @ index.js:151 1 @ index.js:1057 __webpack_require__ @ index.js:854 checkDeferredModules @ index.js:46 (anonymous) @ index.js:994 (anonymous) @ index.js:997 index.js:4135 3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件 Qld0 @ index.js:4135 __webpack_require__ @ index.js:854 fn @ index.js:151 JLrY @ index.js:1430 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ kyBj:2 kyBj @ index.js:4897 __webpack_require__ @ index.js:854 fn @ index.js:151 eval @ main.js:36 Tglg @ index.js:4322 __webpack_require__ @ index.js:854 fn @ index.js:151 1 @ index.js:1057 __webpack_require__ @ index.js:854 checkDeferredModules @ index.js:46 (anonymous) @ index.js:994 (anonymous) @ index.js:997 Request.js:53 Uncaught TypeError: f is not a function at Request.setConfig (Request.js:53:23) at Object.install (http.interceptor.js:4:24) at Vue.use (chunk-vendors.js:7461:22) at eval (main.js:160:5) at Object.Tglg (index.js:4322:1) at __webpack_require__ (index.js:854:30) at fn (index.js:151:20) at 1 (index.js:1057:18) at __webpack_require__ (index.js:854:30) at checkDeferredModules (index.js:46:23)解决
07-14
根据你提供的错误信息,可以看出出现了以下问题: 1. `Cannot find module './uni_modules/uview-ui/components/u-navbar/u-navbar.vue'`:无法找到`u-navbar`组件的模块。 2. `Uncaught TypeError: f is not a function`:f不是一个函数的类型错误。 针对这些问题,可以尝试以下解决方法: 1. 检查组件路径和拼写是否正确:确保路径中的文件名和文件夹名拼写正确,并且确保文件存在于指定的路径中。特别注意大小写是否匹配。 2. 检查组件是否符合easycom规范:uview-ui是否符合uni-app的easycom规范。可以参考[uni-app文档](https://uniapp.dcloud.net.cn/collocation/pages?id=easycom)了解easycom规范,并确保u-navbar组件符合规范。 3. 如果组件不符合easycom规范,尝试手动引入和注册组件:如果u-navbar组件不符合easycom规范,需要手动引入并在组件的`components`选项中注册该组件。检查你的代码中是否正确引入了u-navbar组件,并且在组件的`components`选项中注册了它。 4. 检查依赖项:确保你在项目中正确安装了uview-ui,并且版本与你的代码兼容。可以尝试重新安装uview-ui依赖项,以确保依赖项正确安装。 5. 检查其他错误:检查其他代码中的错误,确保没有其他导致该错误的问题。查看控制台中的其他错误信息,以获取更多线索。 如果上述解决方法无法解决问题,请提供更多关于你的项目结构、代码示例和错误信息的详细信息,以便我能够更准确地帮助你解决问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值