共用方式為


編譯器警告 (層級 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() {
}