コンパイラ エラー C3145
'object': グローバルまたは静的変数は、マネージド型または WinRT 型の ’type’ を含むことはできません。
関数スコープ内では CLR オブジェクトまたは WinRT オブジェクトのみ定義できます。
次の例は C3145 を生成し、その修正方法を示しています。
// C3145.cpp
// compile with: /clr
using namespace System;
ref class G {};
G ^ ptr; // C3145
G ^ ptr2 = gcnew G; // C3145
ref class GlobalObjects {
public:
static G ^ ptr; // OK
static G ^ ptr2 = gcnew G; // OK
};
int main() {
G ^ ptr; // OK
G ^ ptr2 = gcnew G; // OK
}
次の例では C3145 を生成します。
// C3145b.cpp
// compile with: /clr
ref class MyClass {
public:
static int data;
};
interior_ptr<int> p = &(MyClass::data); // C3145
void Test(interior_ptr<int> x) {}
int main() {
MyClass ^ h_MyClass = gcnew MyClass;
interior_ptr<int> p = &(h_MyClass->data);
}