gpt4 book ai didi

c++ - 模板化结构的括号括起来的初始值设定项列表

转载 作者:太空狗 更新时间:2023-10-29 20:12:56 24 4
gpt4 key购买 nike

#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;
};

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

编辑

海湾合作委员会版本 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

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

最佳答案

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

items.emplace_back(item_t<3>{{1,2,3}});

关于c++ - 模板化结构的括号括起来的初始值设定项列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24493902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com