Compiler Error C2277
'identifier' : cannot take address of this member function
You cannot take the address of a member function.
The following sample generates C2277:
// C2277.cpp
class A {
public:
A();
};
(*pctor)() = &A::A; // C2277
Tätä selainta ei enää tueta.
Päivitä Microsoft Edgeen, jotta voit hyödyntää uusimpia ominaisuuksia, suojauspäivityksiä ja teknistä tukea.
'identifier' : cannot take address of this member function
You cannot take the address of a member function.
The following sample generates C2277:
// C2277.cpp
class A {
public:
A();
};
(*pctor)() = &A::A; // C2277