メンバー関数のアドレスを取得しようとしていますが、方法がわかりません。誰かが私が間違っていることを教えていただければ幸いです。以下の例でわかるように、 (long)&g も (long)&this->g も機能せず、正しい構文がわかりません。
/* Create a class that (redundantly) performs data member selection
and a member function call using the this keyword (which refers to the
address of the current object). */
#include<iostream>
using namespace std;
#define PR(STR) cout << #STR ": " << STR << endl;
class test
{
public:
int a, b;
int c[10];
void g();
};
void f()
{
cout << "calling f()" << endl;
}
void test::g()
{
this->a = 5;
PR( (long)&a );
PR( (long)&b );
PR( (long)&this->b ); // this-> is redundant
PR( (long)&this->c ); // = c[0]
PR( (long)&this->c[1] );
PR( (long)&f );
// PR( (long)&g ); // this doesn't work
// PR( (long)&this->g ); // neither does this
cout << endl;
}
int main()
{
test t;
t.g();
}
前もって感謝します!
お返事ありがとうございます!しかし、私はまだそれを機能させません。ラインを変えたら
PR( (long)&g );
に
PR( (long)&test::g );
、まだ機能しません。
PR( &test::g );
main() で動作しますが、動作しません
PR( (long)&test::g );
???
私は何かが欠けていると思います。:(