Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
illegal use of 'super': 'class' does not have any base classes
Remarks
The keyword super was used within the context of a member function of a class that does not have any base classes.
Example
The following example generates C2791:
// C2791.cpp
struct D {
void mf() {
__super::mf(); // C2791
}
};