decay 클래스
값으로 전달된 형식을 생성합니다. 형식을 비참조, 비상수, 비휘발성으로 만들거나 함수 또는 배열 형식에서 형식에 대한 포인터를 만듭니다.
구문
template <class T>
struct decay;
template <class T>
using decay_t = typename decay<T>::type;
매개 변수
T
수정할 형식입니다.
설명
decay 템플릿을 사용하여 형식이 값을 통해 인수로 전달된 것처럼 결과 형식을 생성합니다. 클래스 템플릿 멤버 typedef type
는 다음 단계에서 정의된 수정된 형식을 보유합니다.
U
형식은remove_reference<T>::type
으로 정의되어 있습니다.is_array<U>::value
가 true이면 수정된 형식type
이remove_extent<U>::type *
입니다.그렇지 않은 경우,
is_function<U>::value
가 true이면 수정된 형식type
은add_pointer<U>::type
입니다.그렇지 않은 경우, 수정된 형식
type
은remove_cv<U>::type
입니다.
요구 사항
헤더:<type_traits>
네임스페이스: std