gpt4 book ai didi

c++ - C风格数组的标准容器

转载 作者:搜寻专家 更新时间:2023-10-31 00:08:19 24 4
gpt4 key购买 nike

有可变大小的 C 风格数组的 std 容器吗?比如我有如下代码

int size = 5;    // This is not a constant in general
int *my_array = SpecialAllocationFunction(size);

我希望能够使用 C++ 标准样式容器访问此数组。具有迭代器和函数的东西,例如:sizebeginend、...

我知道我可以使用 std::array 如果 my_array 有一个常量大小。我自己也可以写一个,但我觉得一定要有现成的。

最佳答案

使用自定义分配器,可以构建一个大小仅在运行时已知的 vector (因此 std::array 不可能),包装现有数组。甚至可以通过覆盖特殊的 construct 方法(*) 来保留预先存在的值。

这是一个可能的实现:

/**
* a pseudo allocator which receives in constructor an existing array
* of a known size, and will return it provided the required size
* is less than the declared one. If keep is true in contructor,
* nothing is done at object construction time: original values are
* preserved
* at deallocation time, nothing will happen
*/
template <class T>
class SpecialAllocator {
T * addr;
size_t sz;
bool keep;
public:
typedef T value_type;
SpecialAllocator(T * addr, size_t sz, bool keep):
addr(addr), sz(sz), keep(keep) {}
size_t max_size() {
return sz;
}
T* allocate(size_t n, const void* hint=0) {
if (n > sz) throw std::bad_alloc(); // throws a bad_alloc...
return addr;
}
void deallocate(T* p, size_t n) {}
template <class U, class... Args>
void construct(U* p, Args&&... args) {
if (! keep) {
::new((void *)p) U(std::forward<Args>(args)...);
}
}
template <class U>
void destroy(U* p) {
if (! keep) {
p->~U(); // do not destroy what we have not constructed...
}
}

};

然后可以这样使用:

int size = 5;    // This is not a constant in general
int *my_array = SpecialAllocationFunction(size);

SpecialAllocator<int> alloc(my_array, size);
std::vector<int, SpecialAllocator<int> > vec(size, alloc);

从那时起,vec 将是一个真正的 std::vector 包装 my_array

这里是一个简单的代码作为演示:

int main(){
int arr[5] = { 5, 4, 3, 2, 1 };
SpecialAllocator<int> alloc(arr, 5, true); // original values will be preserved
std::vector<int, SpecialAllocator<int> > vec(5, alloc);
for(auto it= vec.begin(); it != vec.end(); it++) {
std::cout << *it << " ";
}
std::cout << std::endl;
try {
vec.push_back(8);
}
catch (std::bad_alloc& a) {
std::cout << "allocation error" << std::endl;
}
return 0;
}

会成功输出:

5 4 3 2 1 
allocation error

(*) 注意构造/销毁可能涉及不同的地方:push_backemplace_back、等。在使用无操作 constructdestroy 方法之前,请仔细考虑您的实际用例。

关于c++ - C风格数组的标准容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49450936/

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