从自动输入参数推断出返回类型

时间:2016-11-10 17:35:21

标签: c++ c++17

为什么以下编译失败? 编译器是否可以从输入中推断出返回类型?

不要完全遵循显示的类型转换错误。

auto func(auto &x)
{
 return x[0];
}

int main()
{
  vector<int> v = { 1, 2, 3};
  (void)func(v);
}

$ g++ -std=c++1z auto.cc 
auto.cc: In instantiation of ‘auto func(auto:1&) [with auto:1 = std::vector<int>]’:
auto.cc:15:16:   required from here
auto.cc:8:14: error: could not convert ‘(& x)->std::vector<_Tp, _Alloc>::operator[]<int, std::allocator<int> >(0ul)’ from ‘__gnu_cxx::__alloc_traits<std::allocator<int> >::value_type {aka int}’ to ‘std::vector<int>’
    return x[0];

1 个答案:

答案 0 :(得分:3)

auto作为函数参数类型不是标准C ++ 。不过,g++ 7 (svn)接受了它...... and your code compiles