gpt4 book ai didi

c++ - 返回转发的引用

转载 作者:太空狗 更新时间:2023-10-29 21:21:48 25 4
gpt4 key购买 nike

我想构建一个最大值函数,将较大的值转发给结果,同时保持引用类型(右值或左值)。

#include <utility>

template<typename T>
constexpr T&& mmax(T&& left, T&& right) {
return left > right ? std::forward<T>(left) : std::forward<T>(right);
}

int main() {
mmax(1, 2);
}

但是,这给了我

max.cc: In instantiation of 'constexpr T&& mmax(T&&, T&&) [with T = int]':
max.cc:9:14: required from here
max.cc:5:72: warning: returning reference to temporary [-Wreturn-local-addr]
return left > right ? std::forward<T>(left) : std::forward<T>(right);

这是为什么呢?我正在使用带有 -std=c++11 的 GCC 4.8.2。

编辑:clang++ 不会发生这种情况。

最佳答案

由于 C++ 11 5.16/4 中有关条件运算符的规则,您的原始代码应该可以工作:

If the second and third operands are glvalues of the same value category and have the same type, the result is of that type and value category

两个表达式forward<T>(left)forward<T>(right)要么都是左值要么都是xvalues,所以它们总是glvalues,并且它们都是T类型, 所以规则适用,条件表达式的类型应该是相同的类型和值类别。

但是,作为潜在编译器错误的变通方法,您可以使用以下表达式,它避免弄清楚条件表达式的类型和值类别(这似乎是错误所在):

return std::forward<T>(left > right ? left : right);

关于c++ - 返回转发的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21954803/

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