如何打印非静态方法地址?

时间:2018-11-07 21:45:58

标签: c++ pointers static

我要打印方法f1的地址。

我不想将其设为静态。

#include <iostream>
using namespace std;

class a1{
public:
    void f1(){   
    }
};
int main(){
    a1 ma;
    cout << &ma.f1;
    return 0;
}

0 个答案:

没有答案