📜  C++中的std :: remove_cv示例

📅  最后修改于: 2021-05-30 02:00:16             🧑  作者: Mango

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

头文件:

#include

模板:

template
struct remove_cv;

句法:

std::remove_cv::type a;

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

返回值:

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

程序:

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

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

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”