我有一个使用VC ++和GDCM的较新版本构建的Qt应用程序。我以前使用VC ++ 2015和旧版本的GDCM构建了该应用程序,并且编译并运行得很好。现在,我在字符串分配中遇到了异常。
gdcm::Reader r;
r.SetFileName(f.toStdString().c_str());
if (r.Read()) {
gdcm::StringFilter sf;
sf = gdcm::StringFilter();
sf.SetFile(r.GetFile());
std::string s;
/* get modality */
gdcm::Tag tag = gdcm::Tag(0x0008,0x0060);
s = sf.ToString(tag); // <-- runtime error here...
fileModality = QString(s.c_str());
/* get patientID */
s = sf.ToString(gdcm::Tag(0x0010,0x0020));
filePatientID = QString(s.c_str());
/* get protocol (seriesDesc) */
s = sf.ToString(gdcm::Tag(0x0008,0x103E));
fileProtocol = QString(s.c_str());
}
如果我使用assign
函数,则错误将移至从字符串到c_str的转换的下一行。
s.assign(sf.ToString(tag));
fileModality = QString(s.data());
我不确定这是怎么回事,但这似乎是GDCM无法正确返回字符串对象的问题。
编辑:该错误是一个包含以下内容的对话框
The inferior stopped because it triggered an exception.
Stopped in thread 0 by: Exception at 0x7ffaa7b8f621, code: 0xc0000005: read access violation at: 0xfffffffffff, flags=0x0 (first chance).
还有调用堆栈,从我自己的函数调用开始
1 std::_Container_base12::_Swap_all xutility 239 0x7ff7764a7b7a
2 std::_String_alloc<std::_String_base_types<char,std::allocator<char>>>::_Swap_all xstring 2029 0x7ff7764a7af7
3 std::string::_Assign_rv_contents_with_alloc_always_equal xstring 2353 0x7ff7764a619d
4 std::string::_Assign_rv_contents xstring 2326 0x7ff7764a6132
5 std::string::operator= xstring 2308 0x7ff7764a37cd
6 MainWindow::GetFileType mainwindow.cpp 477 0x7ff77648784c
... <More>
答案 0 :(得分:0)
如果有人遇到类似问题,我会把它放在这里。
我能够找出问题所在。 GDCM是在Release中编译的...但是我的应用是在Debug中编译的。它以某种方式链接起来很好,并且大部分都运行了,但是当它遇到来自GDCM库的函数调用时,它崩溃了。在Release或Debug中进行编译可以修复所有问题。