std::remove_cv, std::remove_const, std::remove_volatile
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct remove_cv; |
(1) | (C++11 起) |
template< class T > struct remove_const; |
(2) | (C++11 起) |
template< class T > struct remove_volatile; |
(3) | (C++11 起) |
Provides the member typedef type
which is the same as T
, except that its topmost cv-qualifiers are removed.
1) removes the topmost const, the topmost volatile, or both, if present.
2) removes the topmost const
3) removes the topmost volatile
目录 |
[编辑] 会员类型
姓名
|
Definition |
type
|
the type T without cv-qualifier
|
[编辑] 可能的实现
template< class T > struct remove_cv { typedef typename std::remove_volatile<typename std::remove_const<T>::type>::type type; }; template< class T > struct remove_const { typedef T type; }; template< class T > struct remove_const<const T> { typedef T type; }; template< class T > struct remove_volatile { typedef T type; }; template< class T > struct remove_volatile<volatile T> { typedef T type; }; |
[编辑] 示例
Removing const/volatile from const volatile int * does not modify the type, because the pointer itself is neither const nor volatile.
#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
[编辑] 另请参阅
(C++11) |
检查类型是否包含const修饰符 (类模板) |
(C++11) |
检查类型是否包含volatile修饰符 (类模板) |