静态库与动态库的使用02—_declspec(dellexport) 与 _declspec(dllimport)

lib和dll

参考链接:

添加链接描述

添加链接描述

dllimport与dllexport作用与区别

_declspec(dellexport) 与 _declspec(dllimport)

区别

​ 他们都是DLL内的关键字,即导出与导入。他们是将DLL内部的类与函数以及数据导出与导入时使用的。

dllexport是在这些类、函数以及数据的申明的时候使用。用他表明这些东西可以被外部函数使用,即(dllexport)是把 DLL中的相关代码(类,函数,数据)暴露出来为其他应用程序使用。使用了(dllexport)关键字,相当于声明了紧接在(dllexport)关键字后面的相关内容是可以为其他程序使用的。

dllimport是在外部程序需要使用DLL内相关内容时使用的关键字。当一个外部程序要使用DLL 内部代码(类,函数,全局变量)时,只需要在程序内部使用(dllimport)关键字声明需要使用的代码就可以了,即(dllimport)关键字是在外部程序需要使用DLL内部相关内容的时候才使用。(dllimport)作用是把DLL中的相关代码插入到应用程序中。

_declspec(dllexport)与_declspec(dllimport)是相互呼应,只有在DLL内部用dllexport作了声明,才能在外部函数中用dllimport导入相关代码。

常见用法

在为方便使用,我们经常在代码中定义宏DLL_EXPORT,此宏用在需要导出的类和函数前,而此宏我们定义如下:

#ifdef DLL_EXPORTS
 
      #define SIMPLE_CLASS_EXPORT __declspec(dllexport)
 
#else
 
       #define SIMPLE_CLASS_EXPORT __declspec(dllimport)
 
#endif

作为动态库,在需要导出的类或函数前必须使用关键字__declspec(dllexport)声明,因此动态库需要定义宏DLL_EXPORTS(使用Vistualstudio建立动态库工程时,此宏已经定义好)。

应用程序需要使用关键字__declspec(dllimport),因此不能定义宏DLL_EXPORTS。

eg:
MI_PETCommonExports.h

#ifndef UIH_MI_MICOMMON_EXPORTS_H
#define UIH_MI_MICOMMON_EXPORTS_H

#ifdef MICOMMON_EXPORTS
#define MICOMMON_API __declspec(dllexport)
#else
#define MICOMMON_API __declspec(dllimport)
#endif
#endif

MI_PETSystemParametersFactory.h

#ifndef UIH_MI_PET_SystemParametersFactor_H
#define UIH_MI_PET_SystemParametersFactor_H

#include <string>
#include "MI_PETVersion.h"
#include "MI_PETCommonExports.h"

namespace UIH_MI
{
	namespace PET
	{
		struct ModulePair
		{
			int moduleA;
			int moduleB;
		};

		class MICOMMON_API ISystemParameters
		{
		public:
			virtual int   UnitsOfSystem() = 0;
			virtual int   ModulesOfScanner() = 0;
			virtual int   BanksOfModule() = 0;
			virtual int   BlocksOfAxialBank() = 0;
			virtual int   BlocksOfTranBank() = 0;
			virtual int   CrystalsOfAxialBlock() = 0;
			virtual int   CrystalsOfTranBlock() = 0;
			virtual int   SizeOfAxialBlock() = 0;
			virtual int   SizeOfTranBlock() = 0;
			
			virtual std::string ProductType() = 0;
			virtual Product ProductModel() = 0;
		};

		class MICOMMON_API IProductSystemParam
		{
		public:
			virtual const int   UnitsOfSystem() = 0;
			virtual const int   ModulesOfScanner() = 0;
			virtual const int   BanksOfModule() = 0;
			virtual const int   BlocksOfAxialBank() = 0;			
		};


		class MICOMMON_API CSystemParametersFactory
		{
		public:
			static ISystemParameters* GetSystemParameters();
			static IProductSystemParam* GetSystemParameters(Product product);
		};
	}
}
#endif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lz_煜

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值