在本文中,我们将讨论 C++ STL 中 std::is_const 模板的工作、语法和示例。
C++ 中的 is_const 模板用于检查定义的类型是否为 const-qualified 类型。
什么是 const-qualified 类型?
当类型的值是常量时,我们称该类型为 const-qualified。常量数据类型是一种类型,一旦在 const 中初始化了一个值,就不能在整个程序中更改或更改。
用法
template <class T> is_const;
参数
模板只能有类型 T 的参数,并检查给定的类型是否为常量限定符
返回值
它返回一个布尔值,如果给定类型是 const-qualifier,则返回 true,如果给定类型不是 const-qualifier,则返回 false。
示例
Input:is_const<const int>::value; Output:True Input:is_const<int>::value; Output:False
示例
#include <iostream>
#include <type_traits>
using namespace std;
int main() {
cout << boolalpha;
cout << "checking for is_const template:";
cout << "\nInt:"<<is_const<int>::value;
cout << "\nConst int:"<< is_const<const int>::value;
cout << "\nConst int&:"<< is_const<const int&>::value;
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
checking for is_const template: Int:false Const int:true Const int&:false
示例
#include <iostream>
#include <type_traits>
using namespace std;
int main() {
cout << boolalpha;
cout << "checking for is_const template:";
cout << "\nFloat:"<<is_const<float>::value;
cout << "\nChar:"<<is_const<char>::value;
cout << "\nFloat *:"<<is_const<float*>::value;
cout << "\nChar *:"<<is_const<char*>::value;
cout << "\nConst int*:"<< is_const<const int*>::value;
cout << "\nint* const:"<< is_const<int* const>::value;
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
checking for is_const template: Float:false Char:false Float *:false Char *:fakse Const int*:false int* const:true
相关用法
- C++ is_class用法及代码示例
- C++ is_unsigned用法及代码示例
- C++ is_fundamental用法及代码示例
- C++ is_scalar用法及代码示例
- C++ is_pointer用法及代码示例
- C++ is_polymorphic用法及代码示例
- C++ is_rvalue_reference用法及代码示例
- C++ is_trivial用法及代码示例
- C++ is_void用法及代码示例
- C++ is_empty用法及代码示例
- C++ is_final用法及代码示例
- C++ is_signed用法及代码示例
- C++ is_reference用法及代码示例
- C++ is_pod用法及代码示例
- C++ is_permutation()用法及代码示例
- C++ is_abstract用法及代码示例
- C++ is_arithmetic用法及代码示例
- C++ is_standard_layout用法及代码示例
- C++ is_lvalue_reference用法及代码示例
- C++ isdigit()用法及代码示例
注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 is_const Template in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。