IClass(我的界面):
#ifndef _ICLASS_H
#define _ICLASS_H
#include <sstream>
namespace Test
{
class __declspec(dllexport) IClass
{
public:
virtual ~IClass() {}
virtual bool Init(const std::string &path) = 0;
};
}
#endif
类.h
#ifndef _CLASS_H
#define _CLASS_H
#include "IClass.h"
#include <memory>
#include <sstream>
#include <stdio.h>
namespace Test
{
class Class: public IClass
{
public:
Class();
~Class();
bool Init(const std::string &path);
};
}
#endif
类.cpp
#include "Class.h"
namespace Test
{
Class::Class()
{
}
bool Class::Init(const std::string &path)
{
try
{
// do stuff
return true;
}
catch(std::exception &exp)
{
return false;
}
}
}
main(在 exe、dll 中隐式链接)
#include "IClass.h"
using namespace Test;
int main(int argc, char* argv[])
{
std::shared_ptr<IClass> test = std::make_shared<Class>(); // error: unreferenced Class
test->Init(std::string("C:\\Temp"));
}
目前 Class 未声明
-> 如果我Class.h
在 main 中包含以下错误LNK2019: unresolved external symbol
::添加class __declspec(dllexport) Class : public IClass
解决此链接器问题,但可以这样做吗?
-> 我也不能这样做:(std::shared_ptr<IClass> test = std::make_shared<IClass>();
因为不允许创建抽象类的对象)
我该如何解决这个问题,这是最佳做法吗?