函數(shù)指針


Concepts

Function pointer is a kind of pointer whicn points to function. There two commom uses of function pointers, jump tables and passing a function pointer as an argument in a function call.

Uses&Examples

The pointer to function must be initialized to point to something before indirection can be performed on it, which means, to use function pointers, we should firstly have a function already declared, and then we can assign a pointer that fits this function to it.

int addValue(int a, int b) {
    return a+b;
}
int (*pf)(int a, int b) = &addValue;

As we can see, the second declaration create pf, a pointer to function, with two arguments, making its type the same as function addValue. Thus we this initialization is avaliable. To use the function pointer, we have three ways.

int a = 20;
int b = 10;
int ans;
//1th method
ans = addValue(a, b);
//2nd method
ans = (*pf)(a, b);
//3nd method
ans = pf(a, b);

The outcome was shown in pf1.c

Callback Functions

The more important way of function pointer is callback function. we can implement an operation function, and we pass a function pointer to the operation, then we can decide indeed which operation is used when we call operation.

void operation(int a, int b, int(*op)(int, int));

we pass an function pointer to the operation function, and we can use the function pointer paseed in the block.

void operation(int a, int b, int(*op)(int, int)){
    int ans = op(a,b);
    printf("%d \n", ans);
}

Function Pointer Array

This time, we declare an array of function pointers, and initialize each of them

int (*pfArray[4])(int, int);
pfArray[0] = addValue;
pfArray[1] = subValue;
pfArray[2] = plusValue;
pfArray[3] = divValue;

int addValue(int a, int b) {
    printf("a + b = ");
    return a+b;
}
int subValue(int a, int b){
    printf("a - b = ");
    return a-b;
}
int plusValue(int a, int b){
    printf("a * b = ");
    return a*b;
}
int divValue(int a, int b){
    printf("a / b = ");
    return a/b;
}

And we can call them each time by just access each item of the array.

for (int i = 0; i < 4; i++){
     operation(a, b, pfArray[i]);
}

Conclusion

From all above, we have had a basic knowledge of function pointers, and the executable code used in this report are as follows.

#include<stdio.h>

int addValue(int a, int b);
int subValue(int a, int b);
int plusValue(int a, int b);
int divValue(int a, int b);
void operation(int a, int b, int(*op)(int, int));

int main(){
    int (*pf)(int a, int b) = &addValue;
    int a = 20;
    int b = 10;
    int ans;

    //Show the use of function pointer
    //1th method
    printf("call addValue(10, 20):\n");
    ans = addValue(a, b);
    printf("%d \n", ans);
    //2nd method
    printf("call (*pf)(10, 20):\n");
    ans = (*pf)(a, b);
    printf("%d \n", ans);
    //3nd method    
    printf("call (*pf)(10, 20): \n");
    ans = pf(a, b);
    printf("%d \n", ans);
    //Show callback function
    printf("Call back function and function pointer array used:\n");
    int (*pfArray[4])(int, int);
    pfArray[0] = addValue;
    pfArray[1] = subValue;
    pfArray[2] = plusValue;
    pfArray[3] = divValue;
    for (int i = 0; i < 4; i++){
        operation(a, b, pfArray[i]);
    }
    return 0;
}

int addValue(int a, int b) {
    printf("a + b = ");
    return a+b;
}
int subValue(int a, int b){
    printf("a - b = ");
    return a-b;
}
int plusValue(int a, int b){
    printf("a * b = ");
    return a*b;
}
int divValue(int a, int b){
    printf("a / b = ");
    return a/b;
}
void operation(int a, int b, int(*op)(int, int)){
    int ans = op(a,b);
    printf("%d \n", ans);
}

Reference

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末森渐,一起剝皮案震驚了整個(gè)濱河市昔驱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌脏里,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件爱榕,死亡現(xiàn)場離奇詭異,居然都是意外死亡蚪拦,警方通過查閱死者的電腦和手機(jī)牍疏,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來拨齐,“玉大人鳞陨,你說我怎么就攤上這事≌巴铮” “怎么了厦滤?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長歼狼。 經(jīng)常有香客問我掏导,道長,這世上最難降的妖魔是什么羽峰? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任趟咆,我火速辦了婚禮,結(jié)果婚禮上梅屉,老公的妹妹穿的比我還像新娘值纱。我一直安慰自己,他們只是感情好坯汤,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布虐唠。 她就那樣靜靜地躺著,像睡著了一般惰聂。 火紅的嫁衣襯著肌膚如雪疆偿。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天搓幌,我揣著相機(jī)與錄音杆故,去河邊找鬼。 笑死鼻种,一個(gè)胖子當(dāng)著我的面吹牛反番,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播叉钥,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼罢缸,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起慷吊,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤缸剪,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后息楔,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體寝贡,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年值依,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了圃泡。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,724評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡愿险,死狀恐怖颇蜡,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情辆亏,我是刑警寧澤风秤,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站扮叨,受9級特大地震影響缤弦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜彻磁,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一碍沐、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧兵迅,春花似錦抢韭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至扯夭,卻和暖如春鳍贾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背交洗。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工骑科, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人构拳。 一個(gè)月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓咆爽,卻偏偏與公主長得像,于是被迫代替她去往敵國和親置森。 傳聞我的和親對象是個(gè)殘疾皇子斗埂,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 9,437評論 0 23
  • 我還是會(huì)哭呛凶。還是會(huì)想。 每個(gè)存在過的人都是生命的依靠行贪。如果一個(gè)人沒了漾稀,那根柱子就塌了模闲。但是偏偏一地殘骸提醒著之前的...
    王汪汪汪汪閱讀 235評論 0 0
  • 那天我想了一萬種不同的措辭,究竟怎樣聽起來才會(huì)讓她覺得心疼崭捍。 「我不想鬧啦尸折!能不能問你最后一個(gè)問題如果拋開我的主觀...
    生活脫軌閱讀 186評論 0 0
  • 2015年11月26日,西洋感恩節(jié)殷蛇。 我們好像越來越從心底里接收西方的節(jié)日翁授,而且每次都過得比自己本來的節(jié)日歡慶×肋洌或...
    晶瑩剔透閱讀 879評論 0 0