我可以先说感谢您抽出宝贵的时间来解决我的问题并尝试提供帮助。但是,我已经尝试过此处和此处建议的解决方案,但它们并没有为我工作。
这是我的问题:我正在尝试将串行端口类创建为 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 的解决方案时,这是我得到的错误:
错误 2 错误 C2491:“MySerial::MySerialPort::serial_port_handle”:不允许定义 dllimport 静态数据成员 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;
}
}
希望你们可以为我提供解决方案,或者至少将我推荐给一个包含有效解决方案的链接。
干杯!