Cpp クラス メンバ関数ポインタ 新しいページはコチラ

提供: yonewiki
移動: 案内, 検索
(クラス メンバ関数ポインタ)
(クラス メンバ関数ポインタ)
29行: 29行:
 
{
 
{
 
   void (CFunctionPointer001::*pfuncExample1)(int,int);
 
   void (CFunctionPointer001::*pfuncExample1)(int,int);
   //pfuncExample1 = &CFunctionPointer001::example_function1;
+
   pfuncExample1 = &CFunctionPointer001::example_function1;
   pfuncExample1 = example_function1;
+
 
 +
   //pfuncExample1 = example_function1;//★これだとダメ★
 +
 
 
   (this->*pfuncExample1)(100,200);
 
   (this->*pfuncExample1)(100,200);
 
}
 
}
  
 
</syntaxhighlight>
 
</syntaxhighlight>

2015年4月23日 (木) 00:00時点における版



個人用ツール
名前空間

変種
操作
案内
ツールボックス