3

我目前在我的程序中使用了一个向量,并且我遇到了一些奇怪的错误,这些错误仅在我开始使用该类后才出现。

错误是:

1>MyCloth.obj : error LNK2019: unresolved external symbol __CrtDbgReportW referenced in function "public: unsigned int & __thiscall std::vector<unsigned int,class std::allocator<unsigned int> >::operator[](unsigned int)" (??A?$vector@IV?$allocator@I@std@@@std@@QAEAAII@Z)
1>libcpmtd.lib(stdthrow.obj) : error LNK2001: unresolved external symbol __CrtDbgReportW
1>D:\Licenta\Project\IOPBTS\Debug\IOPBTS.exe : fatal error LNK1120: 1 unresolved externals

我的代码是:

在头文件中:

#undef vector
#include <vector>

void findPieceVertices(NxU32 selectedVertex); 
bool checkVertexExistsInClothPieceElements(int vertex);
void findVertexTriangles(NxU32 vertex);
std::vector<NxU32> clothPieceElements;

在 cpp 文件中:

bool MyCloth::checkVertexExistsInClothPieceElements(int vertex)
{
for(int i=0;i<clothPieceElements.size();i++)
    if(clothPieceElements[i]==vertex)
        return true;
return false;
}

void MyCloth::findVertexTriangles(NxU32 vertex)
{
NxMeshData data = mCloth->getMeshData();
NxU32* vertices = (NxU32*)data.indicesBegin;
NxU32 aux = 0;

for(int i=0;i<(mInitNumVertices-1)*3;i+=3)
{
    if(*vertices == vertex || *(vertices+1) == vertex || *(vertices+2) == vertex)
    {
        if(!checkVertexExistsInClothPieceElements(*vertices))
            clothPieceElements.push_back(*vertices);
        if(!checkVertexExistsInClothPieceElements(*(vertices+1)))
            clothPieceElements.push_back(*(vertices+1));
        if(!checkVertexExistsInClothPieceElements(*(vertices+2)))
            clothPieceElements.push_back(*(vertices+2));
    }
    vertices = vertices + 3;
}

}

void MyCloth::findPieceVertices(NxU32 selectedVertex)
{
clothPieceElements.push_back(selectedVertex);
int i=0;
while(i<clothPieceElements.size())
{
    findVertexTriangles(clothPieceElements[i]);
    i++;
}

}

我究竟做错了什么?我在网上找到了一些东西,说我使用的文件是在发布模式下编译的,我也应该这样做。问题是,如果我在发布模式下编译,这些错误就会消失,但我的程序无法找到一个非常重要的非 C 库,该库由添加到 VCC 目录-> 包含目录中的路径指向。

有谁知道为什么会发生这个错误?或者这意味着什么

编辑:另外,谁能告诉我在调试或发布模式下构建的区别?

4

2 回答 2

5

看起来你把 CRT 库弄得一团糟。Debug 和 Release 版本之间有两个主要区别:

  • 使用不同的 CRT 库
  • 对代码进行了不同的优化

两者都与您的问题有关。首先,检查此评论。似乎libcmtd.lib您的链接行中缺少您。检查您是否没有从 Linker -> Input 选项下的链接中排除像这样的重要库。

该函数与在 Debug 构建中执行的__CrtDbgReportW一些运行时检查有关。vector::operator[]由于在 Release 构建中禁用了这些检查,因此您在 Release 中没有此错误。

还要确保您在 C/C++ -> 代码生成选项下使用正确版本的 CRT。您应该有一个用于调试配置的调试版本(动态或静态)和一个用于发布配置的发布版本。

没有任何经验,这是一个棘手的问题。如果有可能,我建议从默认模板创建一个新项目,并将所有文件添加到这个新项目中,以确保默认情况下所有设置都正确设置。

于 2013-05-24T12:43:04.810 回答
1

好吧,我解决了。问题出在 C/C++ -> 代码生成 -> 运行时库中。当我需要使用 /MTd(调试)时,我正在使用 /MT。现在可以了。我只从项目中排除了 LIBCD 库,我正在使用 GLUI,否则项目将无法工作

于 2013-05-29T12:55:35.057 回答