我正在创建一个 DLL 并FastString
使用 CreateFastString
函数提供类的入口点:
FastString.h
:
#define EXPORT __declspec(dllexport)
#define IMPORT __declspec(dllimport)
class FastString
{
const int m_length;
char* m_str;
public:
FastString(const char* str);
~FastString();
int Length()const;
int Find(const char* str)const;
};
extern "C" FastString* CreateFastString(const char* str);
FastString.cpp
:
#include "stdafx.h"
#include <string>
#include "FastString.h"
FastString* CreateFastString(const char* str)
{
return new FastString(str);
}
FastString::FastString(const char* str): m_length(strlen(str)),
m_str(new char[m_length+1])
{}
FastString::~FastString()
{
delete[] m_str;
}
int FastString::Length()const
{
return m_length;
}
int FastString::Find(const char* str)const
{
return 1;
}
main.cpp
:
#include "stdafx.h"
#include <iostream>
#include "FastString.h"
int _tmain(int argc, _TCHAR* argv[])
{
FastString* str = CreateFastString("Hello Dll");
std::cout<<"The length is "<<str->Length()<<std::endl;
return 0;
}
在编译期间,我收到以下错误:
TeatApp.obj : error LNK2019: unresolved external symbol _CreateFastString referenced in function _wmain
D:\MFC\FastString\Debug\TeatApp.exe : fatal error LNK1120: 1 unresolved externals
在Linker -> Input -> Additional Dependencies
我提供了.lib
文件的路径。
任何人都可以建议出了什么问题。提前致谢。