【C++】DLL文件加载的两种方式

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、显示加载
  • 二、隐式
  • 总结


前言

C++加载自己写的DLL文件,有两种方式。


一、显示加载

显示加载只需要.dll文件即可,不需要在visual studio上配置。

#include   // 加载DLL
#include 
using namespace std;
typedef int(*Dllfun)(string, string, string); // 根据自己开放的接口声明
int main()
{
	Dllfun detect;
	HINSTANCE hdll;
	hdll = LoadLibrary("deploymentDLL.dll"); // 使用LoadLibrary加载
	if (hdll == NULL)  // 判断是否读取dll文件成功
	{
		return -1;
	}
	else
	{
		detect = (Dllfun)GetProcAddress(hdll, "detectMain");  // 对外开放的接口
		if (detect != NULL)
		{
			int num = detect("circlejpg", "GPU", "circle"); 
		}
	}
	return 0;
}

二、隐式

隐式加载需要在visual studio配置好.lib文件和.dll文件,同时准备好头文件

#include "dll/detect_implement.h" // DLL的头文件

using namespace std;

int main()
{
	int num;
	num = detectMain("circle.jpg", "GPU", "circle");
	system("pause");
	return 0;
}

总结

以上就是对dll文件显示加载和隐式加载的两种方式的介绍。隐式加载是由编译器完成对DLL的加载和卸载工作。编译阶段需要添加头文件,编译器根据动态库路径取查找动态库。显式加载是由运行的APP自行决定什么时候加载或卸载动态库的,编译的时候无需添加头文件等。若要加载的文件较大,建议用显示加载,不占用太多内存。

你可能感兴趣的:(C++使用,c++,开发语言)