19

我已经在一个完全独立的项目中尝试了这段代码,它工作正常(唯一的区别是不工作的项目被导出为 DLL)。这是代码:

RATMTHLIB.CPP

#include "stdafx.h"
#include "RTATMATHLIB.h"
#include <math.h>
#include <vector>
#include <algorithm>
#include <stdexcept>

using namespace std;

double someFunc(double** Y, int length)
{
    vector<double> myVector;

    for(int i = 0; i < length; i++)
    {
        double value = (*Y)[i];

        vector<double>::iterator it = find(myVector.begin(), myVector.end(), value);

        if(it != myVector.end())
        {
            continue;
        }
        else
        {
            myVector.push_back(value);
        }
    }
    return 0;
}

RATMTHLIB.H

__declspec(dllexport) double someFunc(double** Y, int length);

错误

Error   1   error LNK2019: unresolved external symbol __imp___CrtDbgReportW referenced in function "public: __thiscall std::_Vector_const_iterator<double,class std::allocator<double> >::_Vector_const_iterator<double,class std::allocator<double> >(double *,class std::_Container_base_secure const *)" (??0?$_Vector_const_iterator@NV?$allocator@N@std@@@std@@QAE@PANPBV_Container_base_secure@1@@Z)  RTATMATHLIB.obj RTATMATHLIB
Error   2   fatal error LNK1120: 1 unresolved externals

就是这样。我不确定为什么它在另一个项目而不是这个项目中有效......

4

4 回答 4

36

我发现了另一个论坛帖子,似乎有人报告了与您遇到的完全相同的问题。请检查您是否有

_DEBUG

在您的项目设置(在 C/C++ -- Preprocessor 下)或代码中的某个位置(或包含文件)中定义。

看起来 std::vector 认为您正在构建调试版本,而实际上您正在创建发布版本。

我希望这有帮助。

于 2011-05-14T19:58:50.617 回答
28

Runtime Library在我的情况下,问题是设置为Debug 配置Multi-threaded DLL。解决方法是将其更改为Multi-threaded Debug DLL. 错误消失了。删除_DEBUG宏也是一种解决方法,我想这不是一个好主意,因为您最终会得到链接到非调试标准库的调试版本。

于 2014-11-20T20:07:23.087 回答
3

问题是我在 C/C++->Preprocessor 中定义了 _DEBUG。将其更改为 NDEBUG 解决了问题。

于 2014-04-21T07:25:33.820 回答
2

为我工作:在我的情况下,问题是运行时库设置为多线程 DLL 的调试配置。解决方法是将其更改为多线程调试 DLL

于 2015-03-03T10:42:26.213 回答