std::set<Key,Compare,Allocator>:: operator=
|
set
&
operator
=
(
const
set
&
other
)
;
|
(1) | (constexpr since C++26) |
| (2) | ||
|
set
&
operator
=
(
set
&&
other
)
;
|
(C++11부터)
(C++17까지) |
|
|
set
&
operator
=
(
set
&&
other
)
noexcept ( /* see below */ ) ; |
(C++17부터)
(constexpr since C++26) |
|
|
set
&
operator
=
(
std::
initializer_list
<
value_type
>
ilist
)
;
|
(3) |
(C++11부터)
(constexpr since C++26) |
컨테이너의 내용을 대체합니다.
traits
를
std::
allocator_traits
<
allocator_type
>
로 정의합니다:
|
만약 traits :: propagate_on_container_copy_assignment :: value 가 true 라면, * this 의 할당자가 other 의 할당자 복사본으로 대체됩니다. 만약 할당 후 * this 의 할당자가 이전 값과 비교하여 같지 않다면, 이전 할당자를 사용하여 메모리를 해제한 후 새로운 할당자를 사용하여 메모리를 할당하고 요소들을 복사합니다. 그렇지 않으면, * this 가 소유한 메모리는 가능한 경우 재사용될 수 있습니다. 어떤 경우든, 원래 * this 에 속했던 요소들은 파괴되거나 요소별 복사 할당으로 대체될 수 있습니다. |
(since C++11) |
목차 |
매개변수
| other | - | 데이터 소스로 사용할 다른 컨테이너 |
| ilist | - | 데이터 소스로 사용할 초기화 리스트 |
반환값
* this
복잡도
예외
|
2)
noexcept
명세:
noexcept
(
std::
allocator_traits
<
Allocator
>
::
is_always_equal
::
value
&& std:: is_nothrow_move_assignable < Compare > :: value ) |
(C++17부터) |
참고 사항
컨테이너 이동 대입 후 (오버로드 ( 2 ) ), 호환되지 않는 할당자에 의한 요소별 이동 대입이 강제되지 않는 한, other 에 대한 참조, 포인터 및 반복자(끝 반복자 제외)는 유효하게 유지되지만, 이제는 * this 에 있는 요소를 참조합니다. 현재 표준은 [container.reqmts]/67 의 포괄적 명시를 통해 이 보장을 제공하며, LWG issue 2321 를 통해 더 직접적인 보장이 검토 중입니다.
예제
다음 코드는 operator = 를 사용하여 하나의 std::set 을 다른 set에 할당합니다:
#include <initializer_list> #include <iostream> #include <iterator> #include <set> void print(const auto comment, const auto& container) { auto size = std::size(container); std::cout << comment << "{ "; for (const auto& element : container) std::cout << element << (--size ? ", " : " "); std::cout << "}\n"; } int main() { std::set<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 }
참고 항목
set
을 생성한다
(public member function) |