次の方法で共有


コンパイラ エラー C2846

'constructor' : インターフェイスはコンストラクターを持てません

Visual C++ インターフェイスはコンストラクターを持てません。

次の例では C2846 が生成されます。

// C2846.cpp
// compile with: /c
__interface C {
   C();   // C2846 constructor not allowed in an interface
};