在线文档教程
C++
应用 | Utilities

std::remove_cv

性病:移除[医]简历,性病::删除[医]Const,STD::删除[医]易挥发

Defined in header
template< class T > struct remove_cv;(1)(since C++11)
template< class T > struct remove_const;(2)(since C++11)
template< class T > struct remove_volatile;(3)(since C++11)

提供成员类型胡枝子f。type这和T,只是删除了它的最顶层的cv-限定符。

1%29移除顶部const,最顶端volatile或者两者兼而有之,如果存在的话。

2%29移除顶部const...

3%29移除顶部volatile...

成员类型

NameDefinition
typethe type T without cv-qualifier

帮助者类型

template< class T > using remove_cv_t = typename remove_cv::type;(since C++14)
template< class T > using remove_const_t = typename remove_const<T>::type;(since C++14)
template< class T > using remove_volatile_t = typename remove_volatile<T>::type;(since C++14)

可能的实施

模板<class T>结构删除[医]CV{tyUIDEf type Name STD::Remove[医]挥发性<TypeName STD::Remove[医]康斯特<T>*类型>::type;};模板<class T>结构删除[医]模板<class T>结构删除[医]康斯特<const T>{tyduif T类型;};模板<class T>结构删除[医]VISUALY{tyUIDIFT类型;};模板<class T>结构删除[医]易挥发<volatile T>{类型为T型;};

*。

const volatile int *不修改类型,因为指针本身既非Const也非易失性。

二次

#include <iostream> #include <type_traits> int main() { typedef std::remove_cv<const int>::type type1; typedef std::remove_cv<volatile int>::type type2; typedef std::remove_cv<const volatile int>::type type3; typedef std::remove_cv<const volatile int*>::type type4; typedef std::remove_cv<int * const volatile>::type type5; std::cout << "test1 " << (std::is_same<int, type1>::value ? "passed" : "failed") << '\n'; std::cout << "test2 " << (std::is_same<int, type2>::value ? "passed" : "failed") << '\n'; std::cout << "test3 " << (std::is_same<int, type3>::value ? "passed" : "failed") << '\n'; std::cout << "test4 " << (std::is_same<const volatile int*, type4>::value ? "passed" : "failed") << '\n'; std::cout << "test5 " << (std::is_same<int*, type5>::value ? "passed" : "failed") << '\n'; }

二次

产出:

二次

test1 passed test2 passed test3 passed test4 passed test5 passed

二次

另见

is_const (C++11)checks if a type is const-qualified (class template)
is_volatile (C++11)checks if a type is volatile-qualified (class template)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/type/Remove[医]CV