다음을 통해 공유


컴파일러 오류 C2581

'type': static 'operator =' 함수가 잘못되었습니다.

assignment(=) 연산자가 .로 static잘못 선언되었습니다. 대입 연산자는 을(를) 사용할 static수 없습니다. 자세한 내용은 사용자 정의 연산자(C++/CLI)를 참조하세요.

예시

다음 샘플에서는 C2581을 생성합니다.

// C2581.cpp
// compile with: /clr /c
ref struct Y {
   static Y ^ operator = (Y^ me, int i);   // C2581
   Y^ operator =(int i);   // OK
};