Cpp クラス メンバ関数ポインタ 新しいページはコチラ
提供: yonewiki
(→クラス メンバ関数ポインタ) |
(→クラス メンバ関数ポインタ) |
||
29行: | 29行: | ||
{ | { | ||
void (CFunctionPointer001::*pfuncExample1)(int,int); | void (CFunctionPointer001::*pfuncExample1)(int,int); | ||
− | + | pfuncExample1 = &CFunctionPointer001::example_function1; | |
− | pfuncExample1 = example_function1; | + | |
+ | //pfuncExample1 = example_function1;//★これだとダメ★ | ||
+ | |||
(this->*pfuncExample1)(100,200); | (this->*pfuncExample1)(100,200); | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |