共用方式為


編譯器錯誤 C3113

'structure' 不可以是範本/泛型

您嘗試讓類別範本或類別泛型脫離介面或列舉。

下列範例會產生 C3113:

// C3113.cpp
// compile with: /c
template <class T>
enum E {};   // C3113
// try the following line instead
// class MyClass{};