gpt4 book ai didi

c++ - C++ DLL 项目中未解析的外部符号

转载 作者:行者123 更新时间:2023-11-27 23:12:26 25 4
gpt4 key购买 nike

我能否首先说,我感谢您抽出宝贵时间来解决我的问题并尝试提供帮助。但是我已经尝试了 here 上建议的解决方案和 here他们没有为我工作。

这是我的问题:我正在尝试创建一个串行端口类作为 VS12 DLL 项目。我有一个头文件“SerialDll.h”,它包含在我的 C++ 源文件“SerialDll.cpp”中。当我尝试在 visual studio 2012 中构建解决方案时,出现以下错误:

Error 11 error LNK1120: 1 unresolved externals C:\Sprint 7\SerialDll\Debug\SerialDll.dll 1 1 SerialDll Error 10 error LNK2001: unresolved external symbol "__declspec(dllimport) private: static void * MySerial::MySerialPort::serial_port_handle" (__imp_?serial_port_handle@MySerialPort@MySerial@@0PAXA) C:\Sprint 7\SerialDll\SerialDll\SerialDll.obj SerialDll

当我尝试实现 John Zwinck 的解决方案时,这是我得到的错误:

Error 2 error C2491: 'MySerial::MySerialPort::serial_port_handle' : definition of dllimport static data member not allowed c:\sprint 7\serialdll\serialdll\serialdll.cpp 16 1 SerialDll

这是我的头文件中的代码:

#include <Windows.h>

#ifdef SERIAL_DLL_EXPORTS
#define SERIAL_DLL_API __declspec(dllexport)
#else
#define SERIAL_DLL_API __declspec(dllimport)
#endif

namespace MySerial
{
class MySerialPort
{
private:
static SERIAL_DLL_API HANDLE serial_port_handle;
public:
SERIAL_DLL_API MySerialPort();
SERIAL_DLL_API ~MySerialPort();
};
}

这是我的 c++ 源文件中的代码,以及 John Zwinck 的解决方案:

#include "stdafx.h"
#include "SerialDll.h"
#include <stdexcept>
#include <iostream>

using namespace std;

namespace MySerial
{
HANDLE MySerialPort::serial_port_handle;

MySerialPort::MySerialPort()
{
serial_port_handle = INVALID_HANDLE_VALUE;
}

MySerialPort::~MySerialPort()
{
if(serial_port_handle != INVALID_HANDLE_VALUE)
{
CloseHandle(serial_port_handle);
}
serial_port_handle = INVALID_HANDLE_VALUE;
}
}

希望你们能帮我解决问题,或者至少让我引用一个有效解决方案的链接。

干杯!

最佳答案

答案与您链接的上一个问题的答案完全相同: https://stackoverflow.com/a/17902142/4323

也就是说,您只声明了静态成员,但没有为其分配存储空间。您需要将此添加到您的实现文件中:

namespace MySerial
{
HANDLE MySerialPort::serial_port_handle;
}

关于c++ - C++ DLL 项目中未解析的外部符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19316131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com