Why must I use address-of operator to get a pointer to a member function?

牧云@^-^@ 提交于 2019-12-18 08:35:43

问题


struct A
{
    void f() {}
};

void f() {}

int main()
{
    auto p1 = &f;     // ok
    auto p2 = f;        // ok
    auto p3 = &A::f; // ok

    //
    // error : call to non-static member function
    // without an object argument
    //
    auto p4 = A::f; // Why not ok?
}

Why must I use address-of operator to get a pointer to a member function?


回答1:


auto p1 = &f;     // ok
auto p2 = f;      // ok

The first is more or less the right thing. But because non-member functions have implicit conversions to pointers, the & isn't necessary. C++ makes that conversion, same applies to static member functions.

To quote from cppreference:

An lvalue of function type T can be implicitly converted to a prvalue pointer to that function. This does not apply to non-static member functions because lvalues that refer to non-static member functions do not exist.



来源:https://stackoverflow.com/questions/42150125/why-must-i-use-address-of-operator-to-get-a-pointer-to-a-member-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!