共用方式為


編譯器錯誤 C2792

'super':這個關鍵詞後面必須接著 '::'

唯一可以遵循 關鍵字 __super 的標記是 ::

下列範例會產生 C2792:

// C2792.cpp
struct B {
   void mf();
};

struct D : B {
   void mf() {
      __super.();   // C2792

      // try the following line instead
      // __super::mf();
   }
};