次の方法で共有


コンパイラ エラー C2496

'identifier' : 'selectany' は外部リンケージを伴うデータ アイテムのみに適用できます

selectany 属性は、外部から参照できるグローバル データ項目にのみ適用できます。

次の例では警告 C2496 が生成されます。

// C2496.cpp
// compile with: /c
__declspec(selectany) int x1 = 1;
const __declspec(selectany) int x2 = 2;   // C2496
static __declspec(selectany) int x6 = 6;   // C2496

extern const __declspec(selectany) int x3 = 3;

__declspec(selectany) int x4;

// dynamic initialization of x5
int f();
__declspec(selectany) int x5 = f();

extern const int x7;
// OK - redeclaration of x7 that is extern
const __declspec(selectany) int x7 = 7;