c – 在输出参数中使用auto

c – 在输出参数中使用auto,第1张

概述有没有办法在这种情况下使用auto关键字: void foo(bar& output){ output = bar();} int main(){ //Imaginary code auto a; foo(a);} 当然,不可能知道什么类型的.因此,解决方案应该是以某种方式将它们合并为一个句子.这可用吗? 看起来您希望默认初始化给定函数期望作为参数的类型的对象. 有没有办法在这种情况下使用auto关键字:
voID foo(bar& output){    output = bar();} int main(){   //Imaginary code   auto a;   foo(a);}

当然,不可能知道什么类型的.因此,解决方案应该是以某种方式将它们合并为一个句子.这可用吗?

解决方法 看起来您希望默认初始化给定函数期望作为参数的类型的对象.

您无法使用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 neatertemplate <std::size_t N,typename Func>using arg_n = typename detail::arg_n<N,Func>::type;

然后你就像这样使用它:

//type of the first argument expected by fooarg_n<0,decltype(foo)> a{};foo(a);

当然,只要你重载函数,这一切都会失败.

总结

以上是内存溢出为你收集整理的c – 在输出参数中使用auto全部内容,希望文章能够帮你解决c – 在输出参数中使用auto所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1232700.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存