컴파일러 오류 C3918
사용하려면 'member'가 데이터 멤버여야 합니다.
C3918은 이벤트와 관련된 여러 가지 이유로 발생할 수 있습니다.
예제
C3918은 현재 컨텍스트에서 클래스 멤버가 필요하기 때문에 발생할 수 있습니다. 다음 샘플에서는 C3918을 생성합니다.
// C3918.cpp
// compile with: /clr /c
public ref class C {
public:
System::Object ^ o;
delegate void Del();
event Del^ MyEvent {
void add(Del^ev) {
if ( MyEvent != nullptr) {} // C3918
if ( o != nullptr) {} // OK
}
void remove(Del^){}
}
};
C3918은 null에 대한 간단한 이벤트를 확인하려고 할 때도 발생합니다(이벤트 이름은 더 이상 이벤트에 대한 백업 저장소 대리자에게 직접 액세스를 제공하지 않음).
다음 샘플에서는 C3918을 생성합니다.
// C3918_2.cpp
// compile with: /clr /c
using namespace System;
public delegate int MyDel(int);
interface struct IEFace {
event MyDel ^ E;
};
ref struct EventSource : public IEFace {
virtual event MyDel ^ E;
void Fire_E(int i) {
if (E) // C3918
E(i);
}
};
이벤트를 잘못 구독하는 경우에도 C3918이 발생할 수 있습니다. 다음 샘플에서는 C3918을 생성합니다.
// C3918_3.cpp
// compile with: /clr /c
using namespace System;
public delegate void del();
public ref class A {
public:
event del^ e {
void add(del ^handler ) {
d += handler;
}
void remove(del ^handler) {
d -= handler;
}
void raise() {
d();
}
}
del^ d;
void f() {}
A() {
e = gcnew del(this, &A::f); // C3918
// try the following line instead
// e += gcnew del(this, &A::f);
e();
}
};
int main() {
A a;
}