catch 发表于 2014-6-27 17:00:08

C语言中函数指针的使用大家有什么要说的?

本帖最后由 catch 于 2014-6-27 17:03 编辑

#include <stdio.h>
#include <stdlib.h>

int max(int x,int y)
{
    return x > y ? x : y ;
}

int min(int x,int y)
{
    return x < y ? x : y ;
}

int main()
{
    int (*ptr)(int,int);
    int a,b;
    ptr = max;
    ptr = min;

    scanf("%d %d",&a,&b);
    printf("The max is %d\n",ptr(a,b));
    printf("The min is %d\n",ptr(a,b));
    return 0;
}

函数指针的两个主要用途:


①.调用函数.


②.做函数的参数.


catch 发表于 2014-6-27 17:03:53

大家对于 18 ~ 23 行有什么问题吗?

catch 发表于 2014-6-27 17:09:58

本帖最后由 catch 于 2014-6-27 17:23 编辑

catch 发表于 2014-6-27 17:03 static/image/common/back.gif
大家对于 18 ~ 23 行有什么问题吗?
file:///C:\Users\kascend\AppData\Roaming\Tencent\Users\541683950\QQ\WinTemp\RichOle\P%R8(4KSC{%{53KR4B49FXN.jpg

catch 发表于 2014-6-27 17:12:30

#include <stdio.h>
#include <stdlib.h>

int max(int x,int y)
{
    return x > y ? x : y ;
}

int min(int x,int y)
{
    return x < y ? x : y ;
}

int main()
{
    int (*ptr)(int,int);
    int a,b;
    ptr = max;
    ptr = min;

    scanf("%d %d",&a,&b);
    printf("The max is %d\n",(*ptr)(a,b));
    printf("The min is %d\n",(*ptr)(a,b));
    return 0;
}


catch 发表于 2014-6-27 17:15:09

大家看,在22-23行输出的区别:

①.

    printf("The max is %d\n",ptr(a,b));
    printf("The min is %d\n",ptr(a,b));

②.

    printf("The max is %d\n",(*ptr)(a,b));
    printf("The min is %d\n",(*ptr)(a,b));

竟然都可以正确运行,求解~

catch 发表于 2014-6-27 17:34:00









大家可以画出运行的机制图解吗?

santaclaus 发表于 2014-6-27 18:54:33

本帖最后由 santaclaus 于 2014-6-27 21:53 编辑

在c\c++中使用函数名和函数指针调用都是合法的
1、在 C/C++ 中总是使用函数指针的形式来调用函数。
2、即使在函数调用中使用的是函数名(代表函数类型),也会被转换为函数指针使用,这就是默认的 function-to-pointer 转换。


如:int max(int a,int b)       //max是个函数,该函数类型为(具有两个int形参,和一个int型返回值的函数)

//调用时:
1、调用方式1:max(1,2),利用函数名(函数类型)根据function-to-pointer,会被自动转换为指针形式。
2、调用方式2::(*max)(1,2),max先转为函数指针,而*max又表示函数类型,即相当于max(1,2),根据function-to-pointer,最后又转成函数指针。

所以方式1与方式2是等价的。根据function-to-pointer原则,max(1,2)=(*max)(1,2)=(**max)(1,2)=...=(*******max)(1,2)

而ptr存的就是max函数的地址。

所以,对函数调用时,
ptr(1,2)       <===>   max(1,2)
(*ptr)(1,2)   <===>   (*max)(1,2)

不知对否,请大侠指正。。。

catch 发表于 2014-6-27 19:41:17

santaclaus 发表于 2014-6-27 18:54 static/image/common/back.gif
这是历史遗留问题,函数名就是函数的首地址,即在数值上,max==&max
而ptr存的就是max函数的地址。



真的是这样的吗?

kikiatw 发表于 2014-6-27 21:05:13

你都定義 *ptr了, 代表這是一個二維數組
ptr的位址 = ptr, = *(ptr+0) = ptr 這是位址
ptr的位址 = ptr+1 也等於 *(ptr+1) 也等於 ptr
假設記憶體中有8個BYTE 分別編號11H-88H (H代表HEX, 16進制)
----------------------------------------------
11H,22H,33H,44H,55H,66H,77H,88H
-----------------------------------------------
那麼 ptr 就是11h的位址, ptr+1 就是55h的位址
*ptr 還是11h的位址, 因為他是二維數組
*(ptr+1) 也是55h的位址

santaclaus 发表于 2014-6-27 21:46:05

百度了一下,重新改在7楼了。。

戏++ 发表于 2014-6-28 08:44:09

//print addr
        printf("The max is addr %pptr:%p *ptr:%p\n",max,ptr,(*ptr));

mrjliu 发表于 2015-5-20 22:51:48

process函数
页: [1]
查看完整版本: C语言中函数指针的使用大家有什么要说的?