菜鸟笔记
提升您的技术认知

c 右值引用&&-ag真人游戏

右值引用若不作为函数参数使用,基本等于滥用

右值引用 (rvalue referene) 是 c 新标准 中引入的新特性 , 它实现了移动语义 (move sementics) 和完美转发 (perfect forwarding)。它的主要目的有两个方面:
  1. 消除两个对象交互时不必要的对象拷贝,节省运算存储资源,提高效率。
  2. 能够更简洁明确地定义泛型函数。

何为右值:

   c ( 包括 c) 中所有的表达式和变量要么是左值,要么是右值。通俗的左值的定义就是非临时对象,
  那些可以在多条语句中使用的对象。 所有的变量都满足这个定义,在多条代码中都可以使用,都是左值。
  右值是指临时的对象,它们只在当前的语句中有效。

 

int i = 0;// 在这条语句中,i 是左值,0 是临时变量,就是右值

在c 11之前,右值是不能引的,如

int &a = 1;// error : 非常量的引用必须为左值
const int &a = 1;// 我们最多只能用常量引用来绑定一个右值

在c 11中我们可以引用右值,使用&&实现:

int &&a = 1;

 

应用场景:

如下string类,实现了拷贝构造和赋值运算符重载

#include 
#include 
using namespace std;
class mystring
{
public:
    mystring()
    {
        m_data = null;
        m_len = 0;
    }
    mystring(const char* s)
    {
        m_len = strlen(s);
        init_data(s);
        cout << "构造函数" << s << endl;
    }
    mystring(const mystring& str)
    {
        m_len = str.m_len;
        init_data(str.m_data);
        cout << "拷贝构造函数" << str.m_data << endl;
    }
    mystring& operator=(const mystring& str)
    {
        if ( this != &str ){
            this->m_len = str.m_len;
            init_data(str.m_data);
        }
        cout << "等号操作符重载" << str.m_data << endl;
        return *this;
    }
    ~mystring()
    {
        if ( m_data != null ){
            cout << "析构函数" << endl;
            free(m_data);
        }
    }
private:
    void init_data(const char* s)
    {
        m_data = new char[m_len   1];
        memcpy(m_data, s, m_len);
        m_data[m_len] = '\0';
    }
    char* m_data;
    size_t m_len;
};
void test()
{
    vector vec;
    mystring a;// 没有输出
    a = mystring("hello");
    vec.push_back(mystring("world"));
}
int main()
{
    test();
    system("pause");
    return 0;
}

输出:
构造函数hello
等号操作符重载hello
析构函数
构造函数world
拷贝构造函数world
析构函数
析构函数
析构函数

总共执行了2次拷贝,mystring("hello")和mystring("world")都是临时对象,临时对象被使用完之后会被立即析构,在析构函数中free掉申请的内存资源。
如果能够直接使用临时对象已经申请的资源,并在其析构函数中取消对资源的释放,这样既能节省资源,有能节省资源申请和释放的时间。 这正是定义移动语义的目的。

 

 通过加入定义移动构造函数和转移赋值操作符重载来实现右值引用(即复用临时对象):

#include 
#include 
using namespace std;
class mystring
{
public:
    mystring()
    {
        m_data = null;
        m_len = 0;
    }
    mystring(const char* s)
    {
        m_len = strlen(s);
        init_data(s);
        cout << "构造函数" << s << endl;
    }
    mystring(mystring&& str)
    {
        cout << "移动构造函数" << str.m_data << endl;
        m_len = str.m_len;
        m_data = str.m_data;
        str.m_len = 0;
        str.m_data = null;// 防止在析构函数中将内存释放掉       
    }
    mystring& operator=(mystring&& str)
    {
        cout << "移动等号操作符重载" << str.m_data << endl;
        if ( this != &str ){
            this->m_len = str.m_len;
            this->m_data = str.m_data;
            str.m_len = 0;
            str.m_data = null;// 防止在析构函数中将内存释放掉  
        }
        return *this;
    }
    ~mystring()
    {
        if ( m_data != null ){
            cout << "析构函数" << endl;
            free(m_data);
        }
    }
private:
    void init_data(const char* s)
    {
        m_data = new char[m_len   1];
        memcpy(m_data, s, m_len);
        m_data[m_len] = '\0';
    }
    char* m_data;
    size_t m_len;
};
void test()
{
    vector vec;
    mystring a;// 没有输出
    a = mystring("hello");
    vec.push_back(mystring("world"));
}
int main()
{
    test();
    system("pause");
    return 0;
}

输出:
构造函数hello
移动等号操作符重载hello
构造函数world
移动拷贝构造函数world
析构函数
析构函数

 

需要注意的是:右值引用并不能阻止编译器在临时对象使用完之后将其释放掉的事实,
所以移动构造函数和移动赋值操作符重载函数 中都将_data赋值为了null,而且析构函数中保证了_data != null才会释放。

 

标准库函数std::move

  既然编译器只对右值引用才能调用移动构造函数和移动赋值函数,又因为所有命名对象都只能是左值引用。
  在这样的条件了,如果已知一个命名对象不再被使用而想对它调用转移构造函数和转移赋值函数
  也就是把一个左值引用当做右值引用来使用,怎么做呢?
  标准库提供了函数 std::move,这个函数以非常简单的方式将左值引用转换为右值引用。

#include 
using namespace std;
void processvalue(int& i)
{
    cout << "lvalue processed:" << i << endl;
}
void processvalue(int&& i)
{
    cout << "rvalue processed:" << i << endl;
}
int main()
{
    int a = 1;
    processvalue(a);
    processvalue(move(a));
    system("pause");
    return 0;
}

输出:

lvalue processed:1

rvalue processed:1

std::move在提高swap函数性能上有非常大的帮助,一般来说,swap函数的通用定义如下:

template 
void swap(t& a, t& b)
{
    t tmp(a);// copy a to tmp
    a = b;// copy b to a
    b = tmp;//copy tmp to b
}

 

结合std::move 和 右值引用,可以避免不必要的拷贝。swap的定义变为:

#include 
#include 
using namespace std;
class mystring
{
public:
    mystring()
    {
        m_data = null;
        m_len = 0;
    }
    mystring(const char* s)
    {
        m_len = strlen(s);
        init_data(s);
        cout << "构造函数" << s << endl;
    }
    mystring(mystring&& str)
    {
        cout << "移动构造函数" << str.m_data << endl;
        m_len = str.m_len;
        m_data = str.m_data;
        str.m_len = 0;
        str.m_data = null;// 防止在析构函数中将内存释放掉       
    }
    mystring& operator=(mystring&& str)
    {
        cout << "移动等号操作符重载" << str.m_data << endl;
        if ( this != &str ){
            this->m_len = str.m_len;
            this->m_data = str.m_data;
            str.m_len = 0;
            str.m_data = null;// 防止在析构函数中将内存释放掉  
        }
        return *this;
    }
    ~mystring()
    {
        if ( m_data != null ){
            cout << "析构函数" << endl;
            free(m_data);
        }
    }
private:
    void init_data(const char* s)
    {
        m_data = new char[m_len   1];
        memcpy(m_data, s, m_len);
        m_data[m_len] = '\0';
    }
    char* m_data;
    size_t m_len;
};
namespace myt{
template 
void swap(t& a, t& b)
{
    t tmp(std::move(a));// move a to tmp
    a = std::move(b);// move b to a
    b = std::move(tmp);//move tmp to b
}
}
void test()
{
    mystring a("hello");
    mystring b("world");
    myt::swap(a, b);
}
int main()
{
    test();
    system("pause");
    return 0;
}

 

精确传递(perfect forwarding)

  精确传递就是在参数传递过程中,所有这些属性和参数值都不能改变。在泛型函数中,这样的需求非常普遍

  forward_value函数只有一个参数val,定义如下:

template  
void forward_value(const t& val) { 
    process_value(val); 
} 
template  
void forward_value(t& val) { 
    process_value(val); 
}

函数 forward_value 为每一个参数必须重载两种类型,t& 和 const t&,否则,下面四种不同类型参数的调用中就不能同时满足:

int a = 0; 
const int &b = 1; 
forward_value(a); // int& 
forward_value(b); // const int& 
forward_value(2); // int&

对于一个参数就要重载两次,也就是函数重载的次数和参数的个数是一个正比的关系。这个函数的定义次数对于程序员来说,是非常低效的。我们看看右值引用如何帮助我们解决这个问题:

template  
void forward_value(t&& val) { 
    process_value(val); 
}

只需要定义一次,接受一个右值引用的参数,就能够将所有的参数类型原封不动的传递给目标函数。

 

网站地图