您好,登錄后才能下訂單哦!
本篇內容介紹了“C++ DLL動態庫怎么創建與調用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
ClassDll.h
// 宏定義 防止.h文件重復編譯 #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 // 定義庫文件的 類(導出或導入) class EXT_CLASS CMath { public: // 定義函數 int Add(int item1, int item2); int Sub(int item1, int item2); }; #endif
ClassDll.cpp
// 定義 宏(DLLCLASS_EXPORTS) 頭文件類 // 使用 _declspec(dllexport) 導出 #define DLLCLASS_EXPORTS #include "ClassDll.h" // 實現類函數 int CMath::Add(int item1, int item2) { return item1 + item2; } int CMath::Sub(int item1, int item2) { return item1 - item2; }
生成文件
普通工程、多字節項目
UseClassdll.cpp
#include <iostream> using namespace std; // 導入頭文件 庫類 使用 _declspec(dllimport) 導出類 #include "../ClassDll/ClassDll.h" // 隱式調用dll 加載庫文件 #pragma comment(lib, "../Debug/ClassDll.lib") // 運行時 dll文件與exe文件在一個文件夾中 int main() { // 定義 dll庫中的類 CMath math; // 調用函數 int sum = math.Add(5, 6); int sub = math.Sub(5, 6); // 打印結果 cout << "sum=" << sum << " sub=" << sub << endl; system("pause"); return 0; }
“C++ DLL動態庫怎么創建與調用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。