Compiler Error C2277
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at 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
Show: