gpt4 book ai didi

c++ - 为什么将函数转换为除返回类型外相同的函数类型会失败?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:13:23 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Is the return type part of the function signature?

跟进一个相关但切题的问题(How to disambiguate function templates that differ only by return type?),我想问一个与函数的返回类型不被认为是函数的签名。

考虑以下代码:

#include <iostream>

int foo()
{
return 0;
}

int main()
{
long n = static_cast<long(&)()>(foo)(); // Error: incorrect return type
int p = static_cast<int(&)()>(foo)(); // Compiles just fine
}

上面提到的代码行导致编译错误,因为 foo 被强制转换为的函数类型的 return 类型与 不匹配返回函数foo的类型。

但我认为函数的返回类型在函数的签名中不起作用!

按照某种思路,由于函数签名long(&)()foo的签名匹配,所以foo的强制转换code> 到这种类型的函数应该成功。

但是,转换没有成功。推理哪里出错了?如果由于函数签名而导致转换不能失败,那么为什么会失败?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com