gpt4 book ai didi

c++ - 递归尾随返回类型?

转载 作者:太空狗 更新时间:2023-10-29 23:19:37 29 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
trailing return type using decltype with a variadic template function

我想制作一个函数来汇总多个值。如果我不使用尾随返回类型,则 count() 使用第一个参数的类型作为返回类型。但是,当使用尾随返回类型时,我无法编译代码:

#include <iostream>

template<typename T>
inline T sum(T a) {
return a;
}

template<typename T, typename... Args>
inline auto sum(T a, Args... b) -> decltype(a + sum(b...)) {
return (a + sum(b...));
}

int main() {
std::cout << sum(1, 2.5f, 3, 4);
return 0;
}

错误(GCC)是:

main.cpp: In function ‘int main()’:
main.cpp:16:30: error: no matching function for call to ‘sum(int, float, int, int)’
main.cpp:16:30: note: candidates are:
main.cpp:5:10: note: template<class T> T sum(T)
main.cpp:10:13: note: template<class T, class ... Args> decltype ((a + sum(sum::b ...))) sum(T, Args ...)

我怎样才能让它工作?

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