הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'super' : this keyword can only be used within the body of class member function
Remarks
This error message appears if the user ever tries to uses the keyword super outside of the context of a member function.
Example
The following example generates C2790:
// C2790.cpp
void f() {
__super::g(); // C2790
}