컴파일러 오류 C3673
'type': 클래스에 copy-constructor가 없습니다.
CLR ref 형식의 개체를 복사하려면 사용자 정의 생성자가 필요합니다. 자세한 내용은 참조 형식에 대한 C++ 스택 의미 체계를 참조하세요.
예제
다음 샘플에서는 C3673을 생성합니다.
// C3673.cpp
// compile with: /clr
public ref struct R {
public:
R() {}
// Uncomment the following line to resolve.
// R(R% p) {}
};
int main() {
R r;
R s = r; // C3673
}
다음 샘플에서는 C3673을 생성합니다.
// C3673_b.cpp
// compile with: /clr /c
// C3673 expected
using namespace System;
[AttributeUsage(AttributeTargets::Class)]
ref class MyAttr : public Attribute {
public:
MyAttr() {}
// Uncomment the following line to resolve.
// MyAttr(int i) {}
property int Priority;
property int Version;
};
[MyAttr]
ref class ClassA {}; // OK, no arguments
[MyAttr(Priority = 1)]
ref class ClassB {}; // OK, named argument
[MyAttr(123)]
ref class ClassC {}; // Positional argument
[MyAttr(123, Version = 1)]
ref class ClassD {}; // Positional and named