当前位置:  开发笔记 > 编程语言 > 正文

C++中的函数指针歧义

如何解决《C++中的函数指针歧义》经验,为你挑选了1个好方法。

我有两个问题:

Q1)函数名称本身是指针吗?

如果它们是指针,那么它们中存储了什么值?

否则,如果它们不是指针,那么它们是什么以及它们中存储了什么值?

如果我们认为函数名是指针.然后 :

void display(){...}

int main ()
{ 
    void (*p)();

    **p=display; //Works (justified**, because we are assigning one pointer into another)

    **p=&display; //Works (Not justified** If function name is a pointer (let say type*) , then &display is of datatype : type**. Then how can we assign type** (i.e. &display) into type * (i.e. p)??)

    **p=*display; //Works (Not justified** If function name is a pointer ( type *) ,then, how can we assign type (i.e. *display) into type * (i.e. p) ?? )
}

再次,

cout<

打印类似于:

为0x1234;为0x1234; 0x1234的

[1234只是例如]

[我的天啊!这怎么可能 ??如何指向指针的地址,指向的地址和指向地址的值都相同?]

Q2)用户定义的函数指针中存储了什么值?

考虑这个例子:

void display(){...}

int main()
{
    void (*f)();

    f=display;

    f=*f; // Why does it work?? How can we assign type (i.e. *f ) into type * (i.e.  f). 

    cout<

[前两个输出是合理的... 但是指针(它指向的地址)中的值如何等于存储在指向地址中的值?]

再次:

f=*********f; // How can this work?

我在网上搜索了它,但所有可用的信息都是关于用法和示例代码来创建函数指针.他们都没有说出他们是什么或者他们与普通指针的区别.

所以我必须遗漏一些非常基本的东西.请指出我缺少的东西.(抱歉我的初学者是无知的.)



1> n. 'pronouns..:

函数名称本身是指针吗?

不可以.但是,在某些情况下,函数可以自动转换为指向函数的指针.该标准在第4.3段中说明:

函数类型T的左值可以转换为"指向T的指针"的prvalue.结果是指向函数的指针.

(函数名称指定左值,但可以有其他函数类型的左值).

在你的例子中

p = display;
p = *p;

正是这种自动转换.display并且*p是函数类型的左值,并且在需要时,它们以静默方式自动转换为指向函数的类型.

p = *display; 

这里转换发生两次:首先display转换为*操作符的指针,然后取消引用,然后再次转换为=操作符的指针.

cout << display << ";" << &display << ";" << *display;

这里,display被转换为指针operator <<; &display已经是一个指针,因为它&是一个普通的地址获取运算符; 并*display转换为指针,operator <<在其内部display转换为指针operator *.

f = *********f;

在这个表达式中有很多这种转换.自己算吧!

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有