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


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


<type_traits>头文件中提供了C++ STL的std::add_const模板。 C++ STL的std::add_const模板用于获取具有const限定符的T类型。 std::is_volatile用于检查类型T是否为const限定。

头文件:

#include<type_traits>

模板类别:

template < class T >
struct add_const;

用法:

std::add_const<T>::value

参数:模板std::add_const接受单个参数T(Trait类),该参数用于将类型T声明为const限定。



下面是演示C++中std::add_const:的程序:

程序:

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

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




相关用法


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