2

Visual C++ 2008 でこれをデバッグしようとするたびにエラーが発生します

#include <iostream>
#include <vector>
#include <string>
#include <fstream>

using namespace std;

void load(const char* filename) {
    vector <string*> vec;
    ifstream in(filename);
    char buffer[256];
    while(!in.eof()) {
        in.getline(buffer, 256);
        vec.push_back(new std::string(buffer));
    }
}

int main(int argc, char* args[]) {
    cin.get();
    return 0;
}

このエラーを取得します

Compiling...
main.cpp
Linking...
main.obj : error LNK2019: unresolved external symbol __imp___CrtDbgReportW referenced in function "public: __thiscall std::_Vector_const_iterator,class std::allocator > *,class std::allocator,class std::allocator > *> >::_Vector_const_iterator,class std::allocator > *,class std::allocator,class std::allocator > *> >(class std::basic_string,class std::allocator > * *,class std::_Container_base_secure const *)" (??0?$_Vector_const_iterator@PAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@PAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@QAE@PAPAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@PBV_Container_base_secure@1@@Z)
E:\blabla\Debug\test2.exe : fatal error LNK1120: 1 unresolved externals

私は何を間違っていますか?

4

1 に答える 1

4

プロジェクトのデバッグ バージョンをビルドしているように見えますが、C ランタイム DLL の非デバッグ バージョンに対してリンクしています。これは次で確認できます。

[Project] -> Properties -> C/C++ --> Code Generation --> Runtime Library

デバッグ ビルドの場合、ランタイム ライブラリは「マルチスレッド デバッグ DLL (/MDd)」と表示されます。

CrtDbgReportWはリリース ビルドでは呼び出されstd::vectorないため、リンク時にそのシンボルを見つける必要がないため、実際にはプロジェクトが "Release"として問題なくビルドされることがわかるはずです。

于 2012-09-27T19:24:19.107 に答える