标签:问题 技术分享 src 函数 com const 一个 oid span
今天在Qt中开发程序时,遇到一个QString::toStdString()的内存问题,用法如下:
void test(const QString& theFileName) { std::string aFileName = theFileName.toStdString(); std::ofstream aFile(aFileName); aFile << aFileName; }
在函数还没执行完就崩溃了,跟踪发现是std::string的问题。最后发现是因为引用的库的Runtime Library不同导致的,一个是MDd,一个是MTd,后来改成一致即可。
QString::toStdString() crashes
标签:问题 技术分享 src 函数 com const 一个 oid span
原文地址:https://www.cnblogs.com/opencascade/p/std_string_crash.html