remove_cv Class
由类型创建非const/volatile的类型。
template<class Ty>
struct remove_cv;
参数
- Ty
修改的类型。
备注
该类型修饰符的实例保存一修改类型为 Ty1,当 Ty 是窗体 const Ty1、volatile Ty1或 const volatile Ty1时,否则 Ty。
示例
// std_tr1__type_traits__remove_cv.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
int *p = (std::remove_cv<const volatile int>::type *)0;
p = p; // to quiet "unused" warning
std::cout << "remove_cv<const volatile int> == "
<< typeid(*p).name() << std::endl;
return (0);
}
要求
标头: <type_traits>
命名空间: std