跳到主要内容

std::vector operator=

// (1) Non const version only
constexpr vector& operator=( const vector& other );

// (2) Non const version only
constexpr vector& operator=( vector&& other ) noexcept(/* see below */);

// (3) Non const version only
constexpr vector& operator=( std::initializer_list<T> ilist );

用另一个容器的内容替换当前容器的内容。

  • (1) 复制赋值运算符。用 other 的内容的副本替换当前内容。

    如果 std::allocator_traits<Alloc>::propagate_on_container_copy_assignment::valuetrue,则 *this 的分配器将被替换为另一个分配器的副本。

    如果赋值后 *this 的分配器与其旧值不等,则使用旧分配器释放内存,然后使用新分配器分配内存,再复制元素。

    否则,*this 所拥有的内存可能会在可能的情况下被重用。

    重要

    在任何情况下,最初属于 *this 的元素都可能被销毁或通过元素级别的复制赋值进行替换。

  • (2) 移动赋值运算符。使用移动语义替换其他内容(即,其他数据从其他移动到此容器中)。

    重要

    other 之后处于有效但未指定的状态。

    如果 std::allocator_traits<Alloc>::propagate_on_container_move_assignment::valuetrue,则 *this 的分配器将替换为 other 的分配器的副本。

    如果为 false 且 *this 和 other 的分配器不相等,则 *this 不能获取 other 所拥有的内存的所有权,并且必须单独移动赋值每个元素,并根据需要使用其自己的分配器分配额外的内存。

    在任何情况下,最初属于 *this 的所有元素要么被销毁,要么通过逐元素移动赋值替换。

  • (3) 用初始化列表 ilist 标识的内容替换内容。

参数

  • other - 用作数据源的另一个容器
  • ilist - 用作数据源的初始化列表

返回值

*this

复杂度

  • (1) 线性于 *thisother 的大小 - O(size() + other.size())

  • (2) 线性于 *this 的大小 - O(size())
    如果分配器不相等且不传播,则线性于 *thisother 的大小 - O(size() + other.size())

  • (3)*thisilist 的大小成线性关系 - O(size() + ilist.size())

异常

  • (1, 2) 可能抛出实现定义的异常。
  • (3) Noexcept 规范
noexcept(std::allocator_traits<Alloc>::propagate_on_container_move_assignment::value
|| std::allocator_traits<Alloc>::is_always_equal::value)

备注

在容器移动赋值(重载 (2))之后,除非不兼容的分配器强制进行元素级移动赋值,否则指向 other 的引用、指针和迭代器(末尾迭代器除外)仍然有效,但指向现在位于 *this 中的元素。当前标准通过 [container.requirements.general]/12 中的全面声明作出此保证,并且正在通过 LWG 2321 考虑更直接的保证。

示例

Main.cpp
#include <vector>
#include <iterator>
#include <iostream>

void print(auto const comment, auto const& container)
{
auto size = std::size(container);
std::cout << comment << "{ ";
for (auto const& element: container)
std::cout << element << (--size ? ", " : " ");
std::cout << "}\n";
}

int main()
{
std::vector<int> x { 1, 2, 3 }, y, z;
const auto w = { 4, 5, 6, 7 };

std::cout << "Initially:\n";
print("x = ", x);
print("y = ", y);
print("z = ", z);

std::cout << "Copy assignment copies data from x to y:\n";
y = x;
print("x = ", x);
print("y = ", y);

std::cout << "Move assignment moves data from x to z, modifying both x and z:\n";
z = std::move(x);
print("x = ", x);
print("z = ", z);

std::cout << "Assignment of initializer_list w to z:\n";
z = w;
print("w = ", w);
print("z = ", z);
}
输出
Initially:
x = { 1, 2, 3 }
y = { }
z = { }
Copy assignment copies data from x to y:
x = { 1, 2, 3 }
y = { 1, 2, 3 }
Move assignment moves data from x to z, modifying both x and z:
x = { }
z = { 1, 2, 3 }
Assignment of initializer_list w to z:
w = { 4, 5, 6, 7 }
z = { 4, 5, 6, 7 }
本文来源于此 CppReference 页面。它可能为了改进或编辑偏好而有所修改。点击“编辑此页面”查看本文档的所有更改。
悬停查看原始许可证。

std::vector operator=

// (1) Non const version only
constexpr vector& operator=( const vector& other );

// (2) Non const version only
constexpr vector& operator=( vector&& other ) noexcept(/* see below */);

// (3) Non const version only
constexpr vector& operator=( std::initializer_list<T> ilist );

用另一个容器的内容替换当前容器的内容。

  • (1) 复制赋值运算符。用 other 的内容的副本替换当前内容。

    如果 std::allocator_traits<Alloc>::propagate_on_container_copy_assignment::valuetrue,则 *this 的分配器将被替换为另一个分配器的副本。

    如果赋值后 *this 的分配器与其旧值不等,则使用旧分配器释放内存,然后使用新分配器分配内存,再复制元素。

    否则,*this 所拥有的内存可能会在可能的情况下被重用。

    重要

    在任何情况下,最初属于 *this 的元素都可能被销毁或通过元素级别的复制赋值进行替换。

  • (2) 移动赋值运算符。使用移动语义替换其他内容(即,其他数据从其他移动到此容器中)。

    重要

    other 之后处于有效但未指定的状态。

    如果 std::allocator_traits<Alloc>::propagate_on_container_move_assignment::valuetrue,则 *this 的分配器将替换为 other 的分配器的副本。

    如果为 false 且 *this 和 other 的分配器不相等,则 *this 不能获取 other 所拥有的内存的所有权,并且必须单独移动赋值每个元素,并根据需要使用其自己的分配器分配额外的内存。

    在任何情况下,最初属于 *this 的所有元素要么被销毁,要么通过逐元素移动赋值替换。

  • (3) 用初始化列表 ilist 标识的内容替换内容。

参数

  • other - 用作数据源的另一个容器
  • ilist - 用作数据源的初始化列表

返回值

*this

复杂度

  • (1) 线性于 *thisother 的大小 - O(size() + other.size())

  • (2) 线性于 *this 的大小 - O(size())
    如果分配器不相等且不传播,则线性于 *thisother 的大小 - O(size() + other.size())

  • (3)*thisilist 的大小成线性关系 - O(size() + ilist.size())

异常

  • (1, 2) 可能抛出实现定义的异常。
  • (3) Noexcept 规范
noexcept(std::allocator_traits<Alloc>::propagate_on_container_move_assignment::value
|| std::allocator_traits<Alloc>::is_always_equal::value)

备注

在容器移动赋值(重载 (2))之后,除非不兼容的分配器强制进行元素级移动赋值,否则指向 other 的引用、指针和迭代器(末尾迭代器除外)仍然有效,但指向现在位于 *this 中的元素。当前标准通过 [container.requirements.general]/12 中的全面声明作出此保证,并且正在通过 LWG 2321 考虑更直接的保证。

示例

Main.cpp
#include <vector>
#include <iterator>
#include <iostream>

void print(auto const comment, auto const& container)
{
auto size = std::size(container);
std::cout << comment << "{ ";
for (auto const& element: container)
std::cout << element << (--size ? ", " : " ");
std::cout << "}\n";
}

int main()
{
std::vector<int> x { 1, 2, 3 }, y, z;
const auto w = { 4, 5, 6, 7 };

std::cout << "Initially:\n";
print("x = ", x);
print("y = ", y);
print("z = ", z);

std::cout << "Copy assignment copies data from x to y:\n";
y = x;
print("x = ", x);
print("y = ", y);

std::cout << "Move assignment moves data from x to z, modifying both x and z:\n";
z = std::move(x);
print("x = ", x);
print("z = ", z);

std::cout << "Assignment of initializer_list w to z:\n";
z = w;
print("w = ", w);
print("z = ", z);
}
输出
Initially:
x = { 1, 2, 3 }
y = { }
z = { }
Copy assignment copies data from x to y:
x = { 1, 2, 3 }
y = { 1, 2, 3 }
Move assignment moves data from x to z, modifying both x and z:
x = { }
z = { 1, 2, 3 }
Assignment of initializer_list w to z:
w = { 4, 5, 6, 7 }
z = { 4, 5, 6, 7 }
本文来源于此 CppReference 页面。它可能为了改进或编辑偏好而有所修改。点击“编辑此页面”查看本文档的所有更改。
悬停查看原始许可证。