הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'function' : virtual function cannot be in union 'union'
Remarks
A union is declared with a virtual function. You can declare a virtual function only in a class or structure. Possible resolutions:
Change the union to a class or structure.
Make the function nonvirtual.
Example
The following example generates C2571:
// C2571.cpp
// compile with: /c
union A {
virtual void func1(); // C2571
void func2(); // OK
};