您的位置:首页 > 其它

Pointer to the function

2014-01-09 12:28 387 查看
Pointer to the function?

It appears on the page.247. I had never get in touch with this concept before. Let me make some records.

A function pointer is just that -- a pointer that denotes a function rather than an object. a function to pointer points to a particular type. A function's type is determined by its return type and the types of its parameters.

I get an example:

#include <iostream>
using namespace std;

void pp(int a)
{
cout << a << endl;
}

int main()
{
void (*pf)(int); // declaration is necessary
pf = &pp;
pf(5);
return 0;
}


It's a usage of pointer to the function.
the C++ primer don't supply a instance for explaination. Okay, i get some inforations from other website.

http://www.cprogramming.com/tutorial/function-pointers.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  pointer function
相关文章推荐