< type_traits >头文件中提供了C++ STL的std :: add_const模板。 C++ STL的std :: add_const模板用于获取具有const限定符的T类型。 std :: is_volatile用于检查类型T是否为const限定。
头文件:
#include
模板类别:
template < class T >
struct add_const;
句法:
std::add_const::value
参数:模板std :: add_const接受单个参数T(Trait类) ,该参数用于将类型T声明为const限定。
以下是在C++中演示std :: add_const:的程序:
程序:
// C++ program to illustrate
// std::add_const
#include
#include
using namespace std;
// Driver Code
int main()
{
// Declare variable of type
// int, const int, const int*,
// int * const and const int&
typedef add_const::type A;
typedef add_const::type B;
typedef add_const::type C;
typedef add_const::type D;
typedef add_const::type E;
cout << std::boolalpha;
// Checking const of the above
// declared variables
cout << "A is const int? "
<< is_same::value
<< endl;
cout << "B is const int? "
<< is_same::value
<< endl;
cout << "C is const int? "
<< is_same::value
<< endl;
cout << "D is const int? "
<< is_same::value
<< endl;
std::cout << "E is const int? "
<< is_same::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/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。