gpt4 book ai didi

c++ - 用 T=int& 返回 T(t),如何?

转载 作者:行者123 更新时间:2023-12-02 09:58:22 24 4
gpt4 key购买 nike

template<typename T>
T foo(T&& t) {
return T(t);
}

int main() {
int x;
foo(x);
}
所以,我知道 T=int& 在这里,但我不明白在返回线上会发生什么以使其有效。有人可以解释一下吗?

最佳答案

T(t)执行 explicit conversion (功能转换),当 Tint& , 作为效果 T(t)生成到 t 的引用绑定(bind),然后作为返回值返回(返回类型也是int&)。

关于c++ - 用 T=int& 返回 T(t),如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64056721/

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