gpt4 book ai didi

c++ - 将分配器对象传递给 STL 容器

转载 作者:行者123 更新时间:2023-11-30 05:06:49 30 4
gpt4 key购买 nike

我正在考虑如何将分配器对象传递给 STL C++ 容器,例如如下

std::allocator<int> intAlloc;
vector<int, intAlloc> v1;

我知道我们可以像下面那样做

vector<int, std::allocator<int> > v2;

我正在考虑如何将相同的分配器对象传递给所有 vector 对象而不是传递分配器类型的选项。

最佳答案

如上面 Jarod 的评论所述。我在下面寻找一些可以通过对两个 vector 使用相同的分配器对象来实现的东西。

std::allocator<int> intAlloc;
vector<int, std::allocator<int> > v2(intAlloc);
vector<int, std::allocator<int> > v2(intAlloc);

关于c++ - 将分配器对象传递给 STL 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47753651/

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