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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)