91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++11中右值引用和std::move語句的示例分析

發布時間:2021-09-03 13:46:48 來源:億速云 閱讀:101 作者:小新 欄目:編程語言

這篇文章主要介紹了C++11中右值引用和std::move語句的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1.什么是左值,什么是右值,簡單說左值可以賦值,右值不可以賦值。以下面代碼為例,“A a = getA();”該語句中a是左值,getA()的返回值是右值。

#include "stdafx.h"
#include <iostream>
class A
{
public:
  A() { std::cout << "Constructor" << std::endl; }
  A(const A&) { std::cout << "Copy Constructor" << std::endl; }
  ~A() {}
};
static A getA()
{
  A a;
  return a;
}
int main()
{
  A a = getA();
  return 0;
}

運行以上代碼,輸出結果如下:

Constructor
Copy Constructor

可以看到A的構造函數調用一次,拷貝構造函數調用了一次,構造函數和拷貝構造函數是消耗比較大的,這里是否可以避免拷貝構造?C++11做到了這一點。

2.添加A的移動構造函數,代碼如下:

#include "stdafx.h"
#include <iostream>
class A
{
public:
  A() { std::cout << "Constructor" << std::endl; }
  A(const A&) { std::cout << "Copy Constructor" << std::endl; }
  A(const A&&) { std::cout << "Move Constructor" << std::endl; }
  ~A() {}
};
static A getA()
{
  A a;
  return a;
}
int main()
{
  A a = getA();
  return 0;
}

運行以上代碼,輸出結果:

Constructor
Move Constructor

這樣就沒有調用拷貝構造函數,而是調用移動構造。這里并沒有看到移動構造的優點。

3.修改代碼,給A類添加一個成員變量如下:

#include "stdafx.h"
#include <iostream>
#include <vector>
class B
{
public:
  B() {}
  B(const B&) { std::cout << "B Constructor" << std::endl; }
};
class A
{
public:
  A(): m_b(new B()) { std::cout << "A Constructor" << std::endl; }
  A(const A& src) :
    m_b(new B(*(src.m_b)))
  { 
    std::cout << "A Copy Constructor" << std::endl;
  }
  A(A&& src) :
    m_b(src.m_b)
  {
    src.m_b = nullptr;
    std::cout << "A Move Constructor" << std::endl;
  }
  ~A() { delete m_b; }
private:
  B* m_b;
};
static A getA()
{
  A a;
  std::cout << "================================================" << std::endl;
  return a;
}
int main()
{
  A a = getA();
  std::cout << "================================================" << std::endl;
  A a1(a);
  return 0;
}

運行以上代碼,輸出結果:

A Constructor
================================================
A Move Constructor
================================================
B Constructor
A Copy Constructor

“A a = getA();”調用的是A的移動構造,“A a1(a);”調用的是A的拷貝構造。A的拷貝構造需要對成員變量B進行深拷貝,而A的移動構造不需要,很明顯,A的移動構造效率高。

4.std::move語句可以將左值變為右值而避免拷貝構造,修改代碼如下:

#include "stdafx.h"
#include <iostream>
#include <vector>
class B
{
public:
  B() {}
  B(const B&) { std::cout << "B Constructor" << std::endl; }
};
class A
{
public:
  A(): m_b(new B()) { std::cout << "A Constructor" << std::endl; }
  A(const A& src) :
    m_b(new B(*(src.m_b)))
  { 
    std::cout << "A Copy Constructor" << std::endl;
  }
  A(A&& src) :
    m_b(src.m_b)
  {
    src.m_b = nullptr;
    std::cout << "A Move Constructor" << std::endl;
  }
  ~A() { delete m_b; }
private:
  B* m_b;
};
static A getA()
{
  A a;
  std::cout << "================================================" << std::endl;
  return a;
}
int main()
{
  A a = getA();
  std::cout << "================================================" << std::endl;
  A a1(a);
  std::cout << "================================================" << std::endl;
  A a2(std::move(a1));
  return 0;
}

運行以上代碼,輸出結果:

A Constructor
================================================
A Move Constructor
================================================
B Constructor
A Copy Constructor
================================================
A Move Constructor

“A a2(std::move(a1));”將a1轉換為右值,因此a2調用的移動構造而不是拷貝構造。

5.賦值操作符也可以是移動賦值。

#include "stdafx.h"
#include <iostream>
#include <vector>
class B
{
public:
  B() {}
  B(const B&) { std::cout << "B Constructor" << std::endl; }
};
class A
{
public:
  A(): m_b(new B()) { std::cout << "A Constructor" << std::endl; }
  A(const A& src) :
    m_b(new B(*(src.m_b)))
  { 
    std::cout << "A Copy Constructor" << std::endl;
  }
  A(A&& src) :
    m_b(src.m_b)
  {
    src.m_b = nullptr;
    std::cout << "A Move Constructor" << std::endl;
  }
  A& operator=(const A& src)
  {
    if (this == &src)
      return *this;
    m_b = new B(*(src.m_b));
    std::cout << "operator=(const A& src)" << std::endl;
    return *this;
  }
  A& operator=(A&& src)
  {
    if (this == &src)
      return *this;
    m_b = src.m_b;
    src.m_b = nullptr;
    std::cout << "operator=(const A&& src)" << std::endl;
    return *this;
  }
  ~A() { delete m_b; }
private:
  B* m_b;
};
static A getA()
{
  A a;
  std::cout << "================================================" << std::endl;
  return a;
}
int main()
{
  A a = getA();//移動構造
  std::cout << "================================================" << std::endl;
  A a1(a);//拷貝構造
  std::cout << "================================================" << std::endl;
  A a2(std::move(a1));//移動構造
  std::cout << "================================================" << std::endl;
  a2 = getA();//移動賦值
  std::cout << "================================================" << std::endl;
  a2 = a1;//拷貝賦值
  return 0;
}

運行以上代碼,輸出結果:

A Constructor
================================================
A Move Constructor
================================================
B Constructor
A Copy Constructor
================================================
A Move Constructor
================================================
A Constructor
================================================
A Move Constructor
operator=(const A&& src)
================================================
B Constructor
operator=(const A& src)

 總之盡量給類添加移動構造和移動賦值函數,而減少拷貝構造和拷貝賦值的消耗。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C++11中右值引用和std::move語句的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

麻江县| 囊谦县| 蒲江县| 吴堡县| 吉林市| 阿尔山市| 元朗区| 东丽区| 贡觉县| 梁山县| 宿州市| 岳普湖县| 台山市| 印江| 孟连| 天等县| 东城区| 汉源县| 阜平县| 乡宁县| 上蔡县| 都匀市| 改则县| 淳化县| 延长县| 思南县| 衡南县| 桂阳县| 汕尾市| 岳池县| 明溪县| 叶城县| 蓝山县| 平定县| 九寨沟县| 茂名市| 闵行区| 织金县| 平顺县| 揭西县| 敦煌市|