C++ 种 ,写成 DLL
C++ 类 ,写成 DLL
大家好 ,
有个棘手的问题想请教大家 ,我想把 C++ 类 ,写成 DLL 如何实现啊
如这个类
class Test()
{
public :
void display(std::string str);
int add(int ,int );
private:
int a;
int b;
};
谢谢回答!
------解决方案--------------------
查查windows下的动态库怎么开发
------解决方案--------------------
在MSDN里面搜“DLL”
------解决方案--------------------
http://download.****.net/detail/henry3695/1872959
vc dll编程整理(源代码)
包括
导出函数,导出类,导出MFC类,三种基本dll编程的实例
如果错误请指示
大家好 ,
有个棘手的问题想请教大家 ,我想把 C++ 类 ,写成 DLL 如何实现啊
如这个类
class Test()
{
public :
void display(std::string str);
int add(int ,int );
private:
int a;
int b;
};
谢谢回答!
C++
dll 类
dll
------解决方案--------------------
查查windows下的动态库怎么开发
------解决方案--------------------
在MSDN里面搜“DLL”
------解决方案--------------------
http://download.****.net/detail/henry3695/1872959
vc dll编程整理(源代码)
包括
导出函数,导出类,导出MFC类,三种基本dll编程的实例
如果错误请指示