模板化结构的花括号括起来的初始化列表

Gar*_*oyd 4 c++ templates struct c++11 list-initialization

#include <array>                                                                
#include <vector>                                                               
#include <cinttypes>                                                            
#include <iostream>                                                             

using namespace std;                                                            

template<size_t N>                                                              
struct item_t {                                                                 
  array<uint32_t, N> weight = {0};                                              
};                                                                              

int main(void) {                                                                

  vector<item_t<3>> items;                                                      
  items.emplace_back({{9,2,3}});                                                
  cout << items[0].weight[0] << endl;                                           
  return 0;                                                                     
};  
Run Code Online (Sandbox Code Playgroud)

我在这里有点不知所措。错误在 emplace_back 线上,不知道如何解决。任何帮助或提示将不胜感激,谢谢。

编辑

gcc 版本 4.8.2

$ g++ -std=c++11 test.cpp 
test.cpp: In function ‘int main()’:
test.cpp:16:30: error: no matching function for call to ‘std::vector<item_t<3ul> >::emplace_back(<brace-enclosed initializer list>)’
  items.emplace_back({{9,2,3}});
                              ^
test.cpp:16:30: note: candidate is:
In file included from /usr/include/c++/4.8/vector:69:0,
                 from test.cpp:2:
/usr/include/c++/4.8/bits/vector.tcc:91:7: note: void std::vector<_Tp, _Alloc>::emplace_back(_Args&& ...) [with _Args = {}; _Tp = item_t<3ul>; _Alloc = std::allocator<item_t<3ul> >]
       vector<_Tp, _Alloc>::
       ^
/usr/include/c++/4.8/bits/vector.tcc:91:7: note:   candidate expects 0 arguments, 1 provided
Run Code Online (Sandbox Code Playgroud)

问题在于结构初始化= {0}emplace_back.

0x4*_*2D2 7

emplace_back()使用模板参数推导来确定传递给函数的元素的类型。大括号括起来的初始化列表不是表达式,也没有类型,因此不能由模板推导出来。您必须在此处显式调用构造函数:

items.emplace_back(item_t<3>{{1,2,3}});
Run Code Online (Sandbox Code Playgroud)