C++成员函数指针

《C++ Primer》(5th)19.4

#include
using namespace std;
class Foo
{
    public:
    int nv = 3;
    float fv = 4;
    double dv = 5;
    int method(int arg){
        cout<<"call Foo:method("<*pn<*pd<*pmethod)(7);          // 调用成员函数指针

    auto pmtd = &Foo::method;   // 初始化成员函数指针
    (obj.*pmtd)(8);
}

你可能感兴趣的:(c++,开发语言)