C ++ MFC库中未解析的外部符号

时间:2014-01-21 20:01:17

标签: c++ mfc

我正在尝试将DLL实现到我的应用程序中,但是自从我编写C ++以来它已经过了一段时间,所以我在这里遇到了一些麻烦...... 我在DLL中的类使用特定于该项目的资源文件。在这里你可以看到我的代码:

// ErrorHandler.h (in Resources.dll - an MFC Library)

namespace HandWritten
{
    class ErrorHandler
    {
    private:
        unsigned int m_error_id;
        string get_error_text();
        string get_error_code();
    public:
        ErrorHandler(unsigned int error_id);
        ~ErrorHandler();
    };
}

我创建了一个包含MFC标头的控制台应用程序,它必须测试我的库中的功能。这是测试人员的主要源文件:

CWinApp theApp;

using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    int nRetCode = 0;

    HMODULE hModule = ::GetModuleHandle(NULL);

    if (hModule != NULL)
    {
        // initialize MFC and print and error on failure
        if (!AfxWinInit(hModule, NULL, ::GetCommandLine(), 0))
        {
            // TODO: change error code to suit your needs
            _tprintf(_T("Fatal Error: MFC initialization failed\n"));
            nRetCode = 1;
        }
        else
        {
            // TODO: code your application's behavior here.
        }
    }
    else
    {
        // TODO: change error code to suit your needs
        _tprintf(_T("Fatal Error: GetModuleHandle failed\n"));
        nRetCode = 1;
    }

    new HandWritten::ErrorHandler(30001);

    return nRetCode;
}

我从编译器得到的错误是:

error LNK2019: unresolved external symbol "public: __thiscall HandWritten::ErrorHandler::ErrorHandler(unsigned int)" (??0ErrorHandler@HandWritten@@QAE@I@Z) referenced in function _wmain   E:\Applications\HandWritten\Tester\Tester.obj   Tester

请帮助我,因为如果它不起作用我就会发疯...

* 编辑:* 类构造函数的实现:

namespace HandWritten {
    ErrorHandler::ErrorHandler(unsigned int error_id) : m_error_id{error_id}
    {
        string content(MAKEINTRESOURCEA(error_id));
        MessageBoxA(NULL, content.c_str(), "Ok", MB_OK);
    }
}

1 个答案:

答案 0 :(得分:1)

这是一个非常常见的实现,表明链接器无法找到该方法的实现。您通常会通过以下方式提供实施:

  • 将包含实现的编译对象文件(.obj)传递给链接器。
  • 将包含实现的静态库(.lib)传递给链接器。
  • 将导入库(.lib)传递给链接器,以动态链接到提供实现的DLL。

链接器告诉您没有做过这些。您需要确定所需的选项,然后确保链接器获得所需的选项。

它看起来好像你打算做后者。实现驻留在DLL中。您需要将DLL的导入库提供给链接器。在编译DLL时,您还需要在类上使用__declspec(dllexport),并在使用时使用__declspec(dllimport)