当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::remove_cv用法及代码示例


<type_traits>头文件中提供了C++ STL的std::remove_cv模板。 C++ STL的std::remove_cv模板用于获取类型T,而没有const和volatile限定。如果T不带const和volatile限定,则返回布尔值true,否则返回false。

头文件:

#include<type_traits>

模板:

template<class T>
struct remove_cv;

用法:

std::remove_cv<T>::type a;

参数:模板std::remove_cv接受单个参数T(Trait类),以检查T是否没有const和volatile限定。



返回值:

以下是在C++中演示std::remove_cv的程序:

程序:

// C++ program to illustrate std::remove_cv 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Driver Code 
int main() 
{ 
  
    // Declare variable of type int, const 
    // int, volatile int and const volatile int 
    typedef remove_cv<int>::type A; 
    typedef remove_cv<const int>::type B; 
    typedef remove_cv<volatile int>::type C; 
    typedef remove_cv<const volatile int&>::type D; 
  
    cout << boolalpha; 
  
    cout << "A:"
         << is_same<const volatile int, A>::value 
         << endl; 
  
    cout << "B:"
         << is_same<const volatile int, B>::value 
         << endl; 
  
    cout << "C:"
         << is_same<int, C>::value 
         << endl; 
  
    cout << "D:"
         << is_same<int, D>::value 
         << endl; 
  
    return 0; 
}
输出:
A:false
B:false
C:true
D:false

参考: http://www.cplusplus.com/reference/type_traits/remove_cv/




相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::remove_cv in C++ with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。