4
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++ 関数ポインタとはなんぞや?コールバック関数の作り方

Last updated at Posted at 2017-12-02

たまに聴く謎の言葉「関数ポインタ」について調べてみました。

download.jpg

関数ポインタ

関数を開始するアドレス(エントリポイント)を入れるための変数
次のように定義。

下記の例だと (*ptn) が関数ポインタ

hoge.cpp

int MyFunc(int a, int b){
    return a+b;
}

int main(){
   //戻り値の型 関数ポインタ Myfuncの引数の型  
   int (*ptn)(int,int) = MyFunc;

   // 関数ポインタを使って関数を実行も可能
   cout << ptn(10,10) << endl

}

コールバック関数

関数の引数に指定することで呼び出される関数。この例ではMyFunc関数

hoge.cpp
int MyFunc(int a, int b){
    return a+b;
}

int OutPutFunc(int (*ptn)(int,int)){
    cout << ptn(10,10);
}

int main(){
    OutPutFunc(MyFunc);
    return 0;
}
4
16
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?