std:: uninitialized_default_construct_n
|
헤더 파일에 정의됨
<memory>
|
||
|
template
<
class
NoThrowForwardIt,
class
Size
>
NoThrowForwardIt uninitialized_default_construct_n
|
(1) |
(C++17부터)
(C++26부터 constexpr) |
|
template
<
class
ExecutionPolicy,
class
NoThrowForwardIt,
class
Size
>
NoThrowForwardIt uninitialized_default_construct_n
|
(2) | (C++17부터) |
+
[
0
,
count
)
에
기본 초기화
를 통해 생성합니다. 다음과 같이 구현된 것처럼:
for
(
;
count
>
0
;
(
void
)
++
first,
--
count
)
::
new
(
voidify
(
*
first
)
)
typename
std::
iterator_traits
<
NoThrowForwardIt
>
::
value_type
;
return
first
;
|
std:: is_execution_policy_v < std:: decay_t < ExecutionPolicy >> 가 true 인 경우. |
(C++20 이전) |
|
std:: is_execution_policy_v < std:: remove_cvref_t < ExecutionPolicy >> 가 true 인 경우. |
(C++20 이후) |
목차 |
매개변수
| first | - | 초기화할 요소 범위의 시작 |
| count | - | 생성할 요소의 개수 |
| policy | - | 사용할 실행 정책 |
| 타입 요구사항 | ||
-
NoThrowForwardIt
는
LegacyForwardIterator
요구사항을 충족해야 함
|
||
-
NoThrowForwardIt
의 유효한 인스턴스를 통한 증가, 할당, 비교, 간접 참조 연산은 예외를 발생시켜서는 안 됨
|
||
반환값
위에서 설명한 대로.
복잡도
선형적으로 n 에 비례합니다.
예외
ExecutionPolicy
라는 템플릿 매개변수를 사용하는 오버로드는 다음과 같이 오류를 보고합니다:
-
알고리즘의 일부로 호출된 함수 실행 중 예외가 발생하고
ExecutionPolicy가 표준 정책 중 하나인 경우, std::terminate 가 호출됩니다. 다른ExecutionPolicy의 경우 동작은 구현에 따라 정의됩니다. - 알고리즘이 메모리 할당에 실패하는 경우, std::bad_alloc 이 throw됩니다.
참고 사항
| 기능 테스트 매크로 | 값 | 표준 | 기능 |
|---|---|---|---|
__cpp_lib_raw_memory_algorithms
|
202411L
|
(C++26) | constexpr for 특수화된 메모리 알고리즘 , ( 1 ) |
가능한 구현
template<class NoThrowForwardIt, class Size> constexpr ForwardIt uninitialized_default_construct_n(NoThrowForwardIt first, Size count) { using T = typename std::iterator_traits<NoThrowForwardIt>::value_type; NoThrowForwardIt current = first; try { for (; countn > 0; (void) ++current, --count) ::new (static_cast<void*>(std::addressof(*current))) T; return current; } catch (...) { std::destroy(first, current); throw; } } |
예제
#include <cstring> #include <iostream> #include <memory> #include <string> struct S { std::string m{"default value"}; }; int main() { constexpr int n{3}; alignas(alignof(S)) unsigned char mem[n * sizeof(S)]; try { auto first{reinterpret_cast<S*>(mem)}; auto last = std::uninitialized_default_construct_n(first, n); for (auto it{first}; it != last; ++it) std::cout << it->m << '\n'; std::destroy(first, last); } catch(...) { std::cout << "Exception!\n"; } // 스칼라 타입의 경우, uninitialized_default_construct_n은 // 일반적으로 주어진 초기화되지 않은 메모리 영역을 0으로 초기화하지 않습니다. int v[]{1, 2, 3, 4}; const int original[]{1, 2, 3, 4}; std::uninitialized_default_construct_n(std::begin(v), std::size(v)); // v에 접근하려는 시도는 미정의 동작일 수 있으며, // CWG 1997이 해결되기를 기다리고 있습니다: // for (const int i : v) // std::cout << i << ' '; // 결과는 지정되지 않습니다: std::cout << (std::memcmp(v, original, sizeof(v)) == 0 ? "un" : "") << "modified\n"; }
가능한 출력:
default value default value default value unmodified
결함 보고서
다음의 동작 변경 결함 보고서들은 이전에 발표된 C++ 표준에 소급 적용되었습니다.
| DR | 적용 대상 | 게시된 동작 | 올바른 동작 |
|---|---|---|---|
| LWG 3870 | C++20 | 이 알고리즘은 const 저장소에 객체를 생성할 수 있음 | 허용되지 않음으로 유지 |
참고 항목
|
(C++17)
|
범위로 정의된 초기화되지 않은 메모리 영역에서
default-initialization
방식으로 객체를 생성합니다
(함수 템플릿) |
|
(C++17)
|
시작점과 개수로 정의된 초기화되지 않은 메모리 영역에서
value-initialization
방식으로 객체를 생성합니다
(함수 템플릿) |
|
시작점과 개수로 정의된 초기화되지 않은 메모리 영역에서
default-initialization
방식으로 객체를 생성합니다
(알고리즘 함수 객체) |