如何调用DLL中的导出类

之前在网上一直查不到关于把类打包成dll文件的程序,今天自己写了个测试程序,供大家参考

一、生成类的dll文件

1.我是在vs2008上测试的,建立工程,在选择建立何种类型的工程的时候,勾上application type中的dll;

2.添加一个头文件,命名为mydll.h,这个头文件就是我们测试时候要用接口文件,代码如下:

  1. #ifndef _MYDLL_H_
  2. #define _MYDLL_H_
  3. #ifdef  MYLIBDLL
  4. #define MYLIBDLL extern "C" _declspec(dllimport)
  5. #else
  6. #define MYLIBDLL extern "C" _declspec(dllexport)
  7. #endif
  8. class _declspec(dllexport) testDll{//关键在这个地方,如果这个地方出错,你所建立的dll文件也就不能用了
  9. private:
  10. int a;
  11. public:
  12. testDll();
  13. void setA();
  14. int getA();
  15. };
  16. #endif

3.添加一个源文件,命名为mydll.cpp,这个是类的实现文件:

  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include "mydll.h"
  4. using namespace std;
  5. testDll::testDll(){
  6. cout<<"test dll"<<endl;
  7. a = 11;
  8. }
  9. int testDll::getA()
  10. {
  11. return a;
  12. }
  13. void testDll::setA(){
  14. a = 33;
  15. }

4.最后其他的文件都是vs2008自动生成的,不用去修改,现在编译下,生成dll和lib文件;

二、测试自己生成的dll和lib文件

1、建立工程,在选择建立exe应用程序类型;

2、把刚才生成的dll和lib文件拷到这个工程目录下,另外把mydll.h也拷贝过来(关键);

3、忘了一点,在vs2008中,在linker中把dll 和lib的目录加进去,还要把lib名字加入到addtional     dependencies中;

4、在测试文件的主程序中添加如下代码:

  1. #pragma comment(lib, "dllOne.lib")
  2. #include "stdafx.h"
  3. #include <iostream>
  4. #include "mydll.h"
  5. using namespace std;
  6. int _tmain(int argc, _TCHAR* argv[])
  7. {
  8. testDll* tmp = new testDll();
  9. cout<<tmp->getA()<<endl;
  10. tmp->setA();
  11. cout<<tmp->getA()<<endl;
  12. getchar();
  13. return 0;
  14. }

4,运行,测试下。

上一篇:python学习中遇到的问题


下一篇:nyoj 230/poj 2513 彩色棒 并查集+字典树+欧拉回路