Compiler Error C2516
'name' : is not a legal base class
The class is derived from a type name defined by a typedef
statement.
The following sample generates C2516:
// C2516.cpp
typedef unsigned long ulong;
class C : public ulong {}; // C2516
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'name' : is not a legal base class
The class is derived from a type name defined by a typedef
statement.
The following sample generates C2516:
// C2516.cpp
typedef unsigned long ulong;
class C : public ulong {}; // C2516