在本文中,我们将讨论 C++ STL 中 std::is_lvalue_reference 模板的工作、语法和示例。
C++ 中的 is_lvalue_reference 模板用于检查定义的类型是否为左值引用。
什么是左值?
左值是位于赋值运算符左侧的值。左值是引用内存位置的表达式。
什么是左值引用?
左值引用是绑定到左值的引用。这与我们过去在传统 C++ 或 C 语言中引用变量的方式非常相似,即使用与符号 (&) 和变量本身来引用其地址。
示例
int& a;
用法
template <class T> is_lvalue_reference;
参数
模板只能有 T 类型的参数,并检查给定的类型是否是左值引用
返回值
它返回一个布尔值,如果给定值是左值引用,则返回 true,如果给定值不是左值引用或当我们引用未知位置时返回 false
示例
Input:is_lvalue<int &>::value; Output:True Input:is_lvalue<int>::value; Output:False
示例
#include <iostream>
#include <type_traits>
using namespace std;
class TP {
};
int main() {
cout << std::boolalpha;
cout << "Checking for is_lvalue_reference:";
cout << "\nTP class:"<<is_lvalue_reference<TP>::value;
cout << "\nTP&:"<< is_lvalue_reference<TP&>::value;
cout << "\nTP&&:"<< is_lvalue_reference<TP&&>::value;
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
Checking for is_lvalue_reference: TP class:false TP&:true TP&&:false
示例
#include <iostream>
#include <type_traits>
using namespace std;
int main() {
cout << std::boolalpha;
cout << "Checking for is_lvalue_reference:";
cout << "\nint:"<<is_lvalue_reference<int>::value;
cout << "\nint&:"<< is_lvalue_reference<int&>::value;
cout << "\nint&&:"<< is_lvalue_reference<int&&>::value;
cout << "\nchar:"<<is_lvalue_reference<char>::value;
cout << "\nchar&:"<< is_lvalue_reference<char&>::value;
cout << "\nchar&&:"<< is_lvalue_reference<char&&>::value;
cout << "\nfloat:"<<is_lvalue_reference<float>::value;
cout << "\nfloat&:"<< is_lvalue_reference<float&>::value;
cout << "\nfloat&&:"<< is_lvalue_reference<float&&>::value;
cout << "\ndouble:"<<is_lvalue_reference<double>::value;
cout << "\ndouble&:"<< is_lvalue_reference<double&>::value;
cout << "\ndouble&&:"<< is_lvalue_reference<double&&>::value;
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
Checking for is_lvalue_reference: int:false int&:true int&&:false char:false char&:true char&&:false float:false float&:true float&&:false double:false double:true double&&:false
相关用法
- C++ is_unsigned用法及代码示例
- C++ is_fundamental用法及代码示例
- C++ is_scalar用法及代码示例
- C++ is_pointer用法及代码示例
- C++ is_polymorphic用法及代码示例
- C++ is_rvalue_reference用法及代码示例
- C++ is_class用法及代码示例
- 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_const用法及代码示例
- C++ is_standard_layout用法及代码示例
- C++ isdigit()用法及代码示例
注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 is_lvalue_reference Template in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。