当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::add_lvalue_reference用法及代码示例


<type_traits>头文件中提供了C++ STL的std::add_lvalue_reference模板。 C++ STL的std::add_lvalue_reference模板用于获取引用T类型的左值引用类型。左值引用是通过在某些类型后放置“&”来形成的。右值引用是通过在某些类型后放置“ &&”来形成的。左值不能将(非常量)左值引用绑定到右值。 std::add_lvalue_reference由模板std::is_lvalue_reference::value检查。

头文件:

#include<type_traits>

模板类别:

template< class T >
struct add_lvalue_reference

用法:

std::is_lvalue_reference<T>::value

参数:模板std::add_lvalue_reference接受单个参数T(特质类)



下面是在C++中演示std::add_lvalue_reference的程序:

程序1:

// C++ program to illustrate 
// std::add_lvalue_reference 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Driver Code 
int main() 
{ 
  
    // Declare lvalue of type int, int&, 
    // int&& and int* 
    typedef add_lvalue_reference<int const&>::type A; 
    typedef add_lvalue_reference<int&>::type B; 
    typedef add_lvalue_reference<int&&>::type C; 
    typedef add_lvalue_reference<int&>::type D; 
  
    cout << std::boolalpha; 
  
    // Check if A is int const& or not 
    cout << "A:" << is_same<int const&, A>::value 
         << endl; 
  
    // Check if B is int* or not 
    cout << "B:" << is_same<int*, B>::value 
         << endl; 
  
    // Check if C is int& or not 
    cout << "C:" << is_same<int&, C>::value 
         << endl; 
  
    // Check if C is int && or not 
    cout << "D:" << is_same<int&&, D>::value 
         << endl; 
  
    return 0; 
}
输出:
A:true
B:false
C:true
D:false

程序2:

// C++ program to illustrate 
// std::add_lvalue_reference 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Driver Code 
int main() 
{ 
  
    // Declare lvalue using typename 
    using a = int; 
    using b = float; 
    using lref 
        = typename add_lvalue_reference<a>::type; 
    using rref 
        = typename add_rvalue_reference<b>::type; 
  
    cout << std::boolalpha; 
  
    // Check if the above declaration 
    // are correct or not 
    cout << "is int is lvalue? "
         << is_lvalue_reference<a>::value 
         << '\n'; 
  
    cout << "is lref is lvalue? "
         << is_lvalue_reference<lref>::value 
         << '\n'; 
  
    cout << "is float is lvalue? "
         << is_rvalue_reference<b>::value 
         << '\n'; 
    return 0; 
}
输出:
is int is lvalue? false
is lref is lvalue? true
is float is lvalue? false

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




相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::add_lvalue_reference in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。