在这种情况下有没有办法使用auto关键字:
void foo(bar& output){
output = bar();
}
int main(){
//Imaginary code
auto a;
foo(a);
}
当然,无法知道a
的类型。因此,解决方案应该是以某种方式将它们合并为一个句子。这可用吗?
答案 0 :(得分:10)
看起来你想要默认初始化给定函数期望的类型的对象作为参数。
你不能用auto
执行此操作,但是你可以写一个特征来提取函数所期望的类型,然后用它来声明你的变量:
namespace detail {
//expects the argument number and a function type
template <std::size_t N, typename Func>
struct arg_n;
//does all the work
template <std::size_t N, typename Ret, typename... Args>
struct arg_n <N, Ret (Args...)> {
using type = std::remove_reference_t<
std::tuple_element_t<N, std::tuple<Args...>>
>;
};
}
//helper to make usage neater
template <std::size_t N, typename Func>
using arg_n = typename detail::arg_n<N, Func>::type;
然后你就这样使用它:
//type of the first argument expected by foo
arg_n<0,decltype(foo)> a{};
foo(a);
当然,只要你重载这个功能,这一切都会失败。
答案 1 :(得分:4)
bar foo()
{
return bar{};
}
int main()
{
auto a = foo();
}
所有现代编译器都会进行复制,完全没有副本。