溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

發(fā)布時間:2022-05-20 11:26:07 來源:億速云 閱讀:171 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“C++ DLL動態(tài)庫怎么創(chuàng)建與調(diào)用”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

1、創(chuàng)建庫工程

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

2、添加頭文件

ClassDll.h

// 宏定義 防止.h文件重復(fù)編譯
#ifndef _DLLCLASS_H
#define _DLLCLASS_H

// dll庫文件 定義 宏(DLLCLASS_EXPORTS) 使用 _declspec(dllexport)
// 使用dll庫文件時 _declspec(dllimport)(不定義宏就行)
#ifdef DLLCLASS_EXPORTS
#define EXT_CLASS  _declspec(dllexport)
#else
#define EXT_CLASS  _declspec(dllimport)
#endif

// 定義庫文件的 類(導(dǎo)出或?qū)耄?
class EXT_CLASS CMath 
{
public:
	// 定義函數(shù)
	int Add(int item1, int item2);
	int Sub(int item1, int item2);
};

#endif

3、添加cpp文件

ClassDll.cpp

// 定義 宏(DLLCLASS_EXPORTS) 頭文件類
// 使用 _declspec(dllexport) 導(dǎo)出
#define DLLCLASS_EXPORTS

#include "ClassDll.h"

// 實現(xiàn)類函數(shù)
int CMath::Add(int item1, int item2) 
{
	return item1 + item2;
}

int CMath::Sub(int item1, int item2) 
{
	return item1 - item2;
}

4、編譯dll工程

生成文件

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

5、創(chuàng)建調(diào)用工程

普通工程、多字節(jié)項目

6、調(diào)用工程 添加cpp文件

UseClassdll.cpp

#include <iostream>
using namespace std;

// 導(dǎo)入頭文件 庫類 使用 _declspec(dllimport) 導(dǎo)出類
#include "../ClassDll/ClassDll.h"

// 隱式調(diào)用dll 加載庫文件
#pragma comment(lib, "../Debug/ClassDll.lib")

// 運行時  dll文件與exe文件在一個文件夾中
int main() {
	// 定義 dll庫中的類
	CMath math;

	// 調(diào)用函數(shù)
	int sum = math.Add(5, 6);
	int sub = math.Sub(5, 6);

	// 打印結(jié)果
	cout << "sum=" << sum << " sub=" << sub << endl;
	system("pause");
	return 0;
}

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

C++?DLL動態(tài)庫怎么創(chuàng)建與調(diào)用

“C++ DLL動態(tài)庫怎么創(chuàng)建與調(diào)用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI