共用方式為


編譯器錯誤 C2633

'identifier' : 'inline' 是建構函式的唯一合法儲存類別

建構函式會宣告為內嵌以外的儲存類別。

下列範例會產生 C2633:

// C2633.cpp
// compile with: /c
class C {
   extern C();   // C2633, not inline
   inline C();   // OK
};