C bad_alloc 在内存位置异常

新手上路,请多包涵

OSGP.exe 中 0x758cd36f 处的未处理异常:Microsoft C++ 异常:内存位置 0x0028ef70 处的 std::bad_alloc..

我正在尝试在 Visual Studio 中执行以下代码。但是,我一直遇到上述异常。我添加了一个 try catch 来帮助我捕捉错误,但似乎无济于事。我相信问题与输出窗口中的以下内容有关

First-chance exception at 0x758cd36f in OSGP.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0019f2f4..
First-chance exception at 0x758cd36f in OSGP.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0019ec84..
First-chance exception at 0x758cd36f in OSGP.exe: Microsoft C++ exception: [rethrow] at memory location 0x00000000..
The thread 'Win32 Thread' (0x16dc) has exited with code 0 (0x0).
The program '[448] OSGP.exe: Native' has exited with code 0 (0x0).**

这是代码:

 #include <osgDB/ReadFile>
#include <osgViewer/Viewer>
#include <new>

#include "stdafx.h"

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    int flag = false;
    osgViewer::Viewer viewer;
     osg::ref_ptr<osg::Node> root;
    try
    {
        root = osgDB::readNodeFile("cessna.osg");
        viewer.setSceneData(root.get());
    }
    catch(bad_alloc)
    {
        if (flag) cout << "a bad_alloc exception just occured";
    }
    return viewer.run();
}

原文由 user272671 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.3k
1 个回答

我在 OSG 设置中遇到了非常相似的问题;事实证明,默认情况下 Visual Studio 不会将 Release OSG dll 适当地链接到您的 调试 应用程序。我为 Release 重新配置并观察到 readNode() 没有抛出 bad_alloc 并成功运行。我相信永久的解决方案是自己构建 OSG。

原文由 Sparsh Priyadarshi 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题