std::vector::operator=
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| vector& operator=( const vector& other ); |
(1) | |
| vector& operator=( vector&& other ); |
(2) | (C + + 11以来) |
コンテナの内容を置き換え.
1) Original:
Replaces the contents of the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
コピー代入演算子。
2) otherの内容のコピーを使って内容を置き換え.Original:
Copy assignment operator. Replaces the contents with a copy of the contents of
other.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
代入演算子を移動します。ムーブセマンティクス(すなわち
other内のデータは、このコンテナにotherから移動されている)を使用してotherのものと内容を置き換えます。 otherその後は有効ですが、特定されていない状態になっている.Original:
Move assignment operator. Replaces the contents with those of
other using move semantics (i.e. the data in other is moved from other into this container). other is in valid, but unspecified state afterwards.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| other | - | ソースとして使用する別のコンテナ
Original: another container to be used as source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
*this
[編集] 複雑
1)容器の大きさに比例.
2) Original:
Linear in the size of the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
定数.
Original:
Constant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
次のコードは、別の
を割り当てることstd::vectorを使用しています
Original:
The following code uses
to assign one std::vector to another:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
#include <vector> #include <iostream> void display_sizes(const std::vector<int> &nums1, const std::vector<int> &nums2, const std::vector<int> &nums3) { std::cout << "nums1: " << nums1.size() << " nums2: " << nums2.size() << " nums3: " << nums3.size() << '\n'; } int main() { std::vector<int> nums1 {3, 1, 4, 6, 5, 9}; std::vector<int> nums2; std::vector<int> nums3; std::cout << "Initially:\n"; display_sizes(nums1, nums2, nums3); // copy assignment copies data from nums1 to nums2 nums2 = nums1; std::cout << "After assigment:\n"; display_sizes(nums1, nums2, nums3); // move assignment moves data from nums1 to nums3, // modifying both nums1 and nums3 nums3 = std::move(nums1); std::cout << "After move assigment:\n"; display_sizes(nums1, nums2, nums3); }
Output:
Initially: nums1: 4 nums2: 0 nums3: 0 After assigment: nums1: 4 nums2: 4 nums3: 0 After move assigment: nums1: 0 nums2: 4 nums3: 4
[編集] も参照してください
vectorを構築します Original: constructs the vector The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
| コンテナに値を割り当てます Original: assigns values to the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |