命名空间
变体
操作

std::raw_storage_iterator

来自 cppreference.com
< cpp‎ | memory
 
 
动态内存管理
未初始化内存算法
受限的未初始化内存算法
分配器
垃圾回收支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)



未初始化存储
raw_storage_iterator
(直到 C++20*)
(直到 C++20*)
 
 
定义在头文件 <memory>
template< class OutputIt, class T >

class raw_storage_iterator

    : public std::iterator<std::output_iterator_tag, void, void, void, void>;
(直到 C++17)
template< class OutputIt, class T >
class raw_storage_iterator;
(自 C++17 起)
(C++17 中已弃用)
(C++20 中已删除)

输出迭代器 std::raw_storage_iterator 使标准算法能够将结果存储到未初始化的内存中。当算法将类型为 T 的对象写入解引用迭代器时,该对象会通过复制构造函数构造到迭代器指向的未初始化存储中的位置。模板参数 OutputIt 是任何满足 LegacyOutputIterator 要求并已定义 operator* 返回对象的类型,其中 operator& 返回类型为 T* 的对象。通常,类型 T* 用作 OutputIt

内容

[编辑] 类型要求

-
OutputIt 必须满足 LegacyOutputIterator 要求。

[编辑] 成员函数

创建一个新的 raw_storage_iterator
(公共成员函数) [编辑]
在指向的缓冲区位置构造一个对象
(公共成员函数) [编辑]
解引用迭代器
(公共成员函数) [编辑]
推进迭代器
(公共成员函数) [编辑]
(自 C++17 起)
提供对包装迭代器的访问
(公共成员函数) [编辑]

[编辑] 成员类型

成员类型 定义
iterator_category std::output_iterator_tag
value_type void
difference_type

void

(直到 C++20)

std::ptrdiff_t

(自 C++20 起)
pointer void
reference void

成员类型 iterator_categoryvalue_typedifference_typepointerreference 需要通过继承自 std::iterator<std::output_iterator_tag, void, void, void, void> 来获取。

(直到 C++17)

[编辑] 注意

std::raw_storage_iterator 主要是由于其非异常安全的行为而被弃用。与 std::uninitialized_copy 不同,它在 std::copy 等操作期间不会安全地处理异常,可能会导致资源泄漏,因为在存在异常时,无法跟踪已成功构造的对象的数量及其正确销毁。

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <memory>
#include <string>
 
int main()
{
    const std::string s[] = {"This", "is", "a", "test", "."};
    std::string* p = std::allocator<std::string>().allocate(5);
 
    std::copy(std::begin(s), std::end(s),
              std::raw_storage_iterator<std::string*, std::string>(p));
 
    for (std::string* i = p; i != p + 5; ++i)
    {
        std::cout << *i << '\n';
        i->~basic_string<char>();
    }
    std::allocator<std::string>().deallocate(p, 5);
}

输出

This
is
a
test
.

[编辑] 另请参阅

提供有关分配器类型的的信息
(类模板) [编辑]
为多级容器实现多级分配器
(类模板) [编辑]
检查指定类型是否支持使用分配器构造
(类模板) [编辑]