หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : cannot take address of this member function
Remarks
You cannot take the address of a member function.
Example
The following example generates C2277:
// C2277.cpp
class A {
public:
A();
};
(*pctor)() = &A::A; // C2277