當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ std::remove_const用法及代碼示例


<type_traits>頭文件中提供了C++ STL的std::remove_const模板。 C++ STL的std::remove_const模板用於獲取類型T,而無需const限定。如果T沒有const限定,則返回布爾值true,否則返回false。以下是相同的語法:

頭文件:

#include<type_traits>

模板類別:

template <class T>
struct remove_const;

用法:

std::remove_const<T>::value

參數:此模板std::remove_const接受單個參數T(Trait類),以檢查T是否沒有const限定值。



返回值:模板std::remove_const返回一個布爾值:

  • True:如果類型T沒有const限定。
  • False:如果類型T具有const限定符。

下麵是在C++中演示std::remove_const的程序:

程序:

// C++ program to illustrate 
// std::remove_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 remove_const<int>::type A; 
    typedef remove_const<const int>::type B; 
    typedef remove_const<const int*>::type C; 
    typedef remove_const<int* const>::type D; 
    typedef remove_const<const int&>::type E; 
  
    cout << std::boolalpha; 
  
    // Checking const of the above 
    // declared variables 
    cout << "A is without const int? "
         << is_same<int, A>::value 
         << endl; 
  
    cout << "B is without const int? "
         << is_same<int, B>::value 
         << endl; 
  
    cout << "C is without const int? "
         << is_same<int, C>::value 
         << endl; 
  
    cout << "D is without const int? "
         << is_same<int, D>::value 
         << endl; 
  
    cout << "E is without const int? "
         << is_same<const int, E>::value 
         << endl; 
  
    return 0; 
}
輸出:
A is without const int? true
B is without const int? true
C is without const int? false
D is without const int? false
E is without const int? false

參考: http://www.cplusplus.com/reference/type_traits/remove_const/




相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 std::remove_const in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。