หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'name' : invalid explicit instantiation
Remarks
The compiler detected an ill-formed explicit instantiation.
Example
The following example generates C3413:
// C3413.cpp
template
class MyClass {}; // C3413
Possible resolution:
// C3413b.cpp
// compile with: /c
template <class T>
class MyClass {};
template <>
class MyClass<int> {};