定義和宣告 (C++)
Microsoft 專有的
DLL 介面指的是已知會在系統中 ; 程式所匯出的所有項 (函式和資料) 也就是所有的項目宣告為 dllimport 或dllexport。 DLL 介面中所包含的所有宣告都必須都指定其中一個 dllimport 或dllexport屬性。 不過,定義必須只有指定dllexport屬性。 例如,下列的函式定義會產生編譯器錯誤:
__declspec( dllimport ) int func() { // Error; dllimport
// prohibited on definition.
return 1;
}
這段程式碼也會產生錯誤:
#define DllImport __declspec( dllimport )
__declspec( dllimport ) int i = 10; // Error; this is a
// definition.
不過,這是正確的語法:
__declspec( dllexport ) int i = 10; // Okay--export definition
使用dllexport所示定義,而 dllimport 所示的宣告。 您必須使用extern關鍵字dllexport強制宣告; 否則,會隱含定義。 因此,下列範例是正確的:
#define DllImport __declspec( dllimport )
#define DllExport __declspec( dllexport )
extern DllImport int k; // These are both correct and imply a
DllImport int j; // declaration.
下列範例會釐清上述:
static __declspec( dllimport ) int l; // Error; not declared extern.
void func() {
static __declspec( dllimport ) int s; // Error; not declared
// extern.
__declspec( dllimport ) int m; // Okay; this is a
// declaration.
__declspec( dllexport ) int n; // Error; implies external
// definition in local scope.
extern __declspec( dllimport ) int i; // Okay; this is a
// declaration.
extern __declspec( dllexport ) int k; // Okay; extern implies
// declaration.
__declspec( dllexport ) int x = 5; // Error; implies external
// definition in local scope.
}