次の方法で共有


コンパイラの警告 (レベル 4) C4610

オブジェクト 'class' を初期化できません。ユーザー定義のコンストラクターが必要です

クラスには、ユーザー定義または既定のコンストラクターはありません。 インスタンス化は実行されません。 次のサンプルでは C4610 が生成されます。

// C4610.cpp
// compile with: /W4
struct A {
   int &j;

   A& A::operator=( const A& );
};   // C4610

/* use this structure definition to resolve the warning
struct B {
   int &k;

   B(int i = 0) : k(i) {
   }

   B& B::operator=( const B& );
} b;
*/

int main() {
}