标签: c++ c++11
cppreference.com在std::array的最底部显示以下代码段:
template<class T, class... U> array(T, U...) -> array<T, 1 + sizeof...(U)>;
我从未见过这种语法,所以我想知道: