DLL导出类方法及其使用.doc_第1页
DLL导出类方法及其使用.doc_第2页
DLL导出类方法及其使用.doc_第3页
DLL导出类方法及其使用.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

DLL中定义的类可以在应用工程中使用。下面的例子里,我们在DLL中定义了point和circle两个类,并在应用工程中引用了它们(单击此处下载本工程附件)。/文件名:point.h,point类的声明#ifndef POINT_H#define POINT_H#ifdef DLL_FILEclass _declspec(dllexport) point /导出类point#elseclass _declspec(dllimport) point /导入类point#endifpublic:float y;float x;point();point(float x_coordinate, float y_coordinate);#endif/文件名:point.cpp,point类的实现#ifndef DLL_FILE#define DLL_FILE#endif#include point.h/类point的缺省构造函数point:point()x = 0.0;y = 0.0;/类point的构造函数point:point(float x_coordinate, float y_coordinate)x = x_coordinate;y = y_coordinate;/文件名:circle.h,circle类的声明#ifndef CIRCLE_H#define CIRCLE_H#include point.h#ifdef DLL_FILEclass _declspec(dllexport)circle /导出类circle#elseclass _declspec(dllimport)circle /导入类circle#endifpublic:void SetCentre(const point rePoint);void SetRadius(float r);float GetGirth();float GetArea();circle();private:float radius;point centre;#endif/文件名:circle.cpp,circle类的实现#ifndef DLL_FILE#define DLL_FILE#endif#include circle.h#define PI 3.1415926/circle类的构造函数circle:circle()centre = point(0, 0);radius = 0;/得到圆的面积float circle:GetArea()return PI *radius * radius;/得到圆的周长float circle:GetGirth()return 2 *PI * radius;/设置圆心坐标void circle:SetCentre(const point rePoint)centre = centrePoint;/设置圆的半径void circle:SetRadius(float r)radius = r;类的引用:#include .circle.h/包含类声明头文件#pragma comment(lib,dllTest.lib);int main(int argc, char *argv)circle c;point p(2.0, 2.0);c.SetCentre(p);c.SetRadius(1.0);printf(area:%f girth:%f, c.GetArea(), c.GetGirth();return 0;从上述源代码可以看出,由于在DLL的类实现代码中定义了宏DLL_FILE,故在DLL的实现中所包含的类声明实际上为:class _declspec(dllexport) point /导出类point和class _declspec(dllexport) circle /导出类circle而在应用工程中没有定义DLL_FILE,故其包含point.h和circle.h后引入的类声明为:class _declspec(dllimport) point /导入类point和class _declspec(dllimport) circle /导入类circle不错,正是通过DLL中的class _declspec(dllexport) class_name /导出类circle与应用程序中的class _declspec(dllimport) class_name /导入类匹对来完成类的导出和导入的!我们往往通过在类的声明头文件中用一个宏来决定使其编译为class_declspec(dllexport) class_name还是class _declspec(dllimport)class_name版本,这样就不再需要两个头文件。本程序中使用的是:#ifde

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论