IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 拷贝构造vs移动构造 -> 正文阅读

[游戏开发]拷贝构造vs移动构造

拷贝构造

The copy constructors in C++ work with the l-value references and copy semantics(copy semantics means copying the actual data of the object to another object rather than making another object to point the already existing object in the heap). While move constructors work on the r-value references and move semantics(move semantics involves pointing to the already existing object in the memory).
On declaring the new object and assigning it with the r-value, firstly a temporary object is created, and then that temporary object is used to assign the values to the object. Due to this the copy constructor is called several times and increases the overhead and decreases the computational power of the code. To avoid this overhead and make the code more efficient we use move constructors.

移动构造

Move constructor moves the resources in the heap, i.e., unlike copy constructors which copy the data of the existing object and assigning it to the new object move constructor just makes the pointer of the declared object to point to the data of temporary object and nulls out the pointer of the temporary objects. Thus, move constructor prevents unnecessarily copying data in the memory.
Work of move constructor looks a bit like default member-wise copy constructor but in this case, it nulls out the pointer of the temporary object preventing more than one object to point to same memory location.

左值引用vs右值引用
个人认为i左值和右值的本质区别是=号左右之分,等号右边一般是常量,所以我们右值引用的对象是常量,常量不能更改一定要记住,左值引用和右值引用的字面区别是&,和&&之分,比如左值引用int i =20; int l& = i,右值引用为int && r = 200,不能用左值取初始化右值,比如int x = 20;//左值,int && r = x //error!!!

总结:拷贝构造就是copy,移动构造是指针指向已经存在的对象,copy构造在构造函数之前会先新建一个临时class obj(在进入构造函数之后,就像我们进入函数之后会将实参赋值给形参),再由这个外部的obj将值赋给新建的class obj内部的这个临时obj后任务就结束了,后续的操作都是这个临时的obj和新的class obj之间的,最后在copy完成后就将这个临时obj析构,这个是非常耗时间,耗内存的,

看下面代码

#include <iostream>
#include <vector>

using namespace std;

class Move{
private:
    int* data;
    
public:
    //构造函数
    Move(int d){
        data = new int; //new后返回的是指针
        *data = d;
        cout << "constructor is called for " << d << "\n";
    }
    //拷贝构造,传入source指针,这里也就是右值引用
    Move(const Move& source)
        : Move{ *source.data }{
          cout << "copy constructor is called " << "deep copy for "<< *source.data << "\n";  
        }
    
    //移动构造,传入相同class的常量,这里也是右值引用
    Move(Move&& source)
        : data{ source.data }{
            cout << "Move Constructor for " << *source.data << endl;
            source.data = nullptr; //安全起见
        }
        
    //析构函数
    ~Move(){
        if (data != nullptr)
 
            // If pointer is not pointing
            // to nullptr
            cout << "Destructor is called for "
                 << *data << endl;
        else
 
            // If pointer is pointing
            // to nullptr
            cout << "Destructor is called"
                 << " for nullptr "
                 << endl;
 
        // Free up the memory assigned to
        // The data member of the object
        delete data;
    }
    
};

int main()
{
    vector<Move> vec;
    
    vec.push_back(Move{10});
    vec.push_back(Move{20});

    return 0;
}

我们先只运行vec.push_back(move{10})看打印如下

constructor is called for 10
Move Constructor for 10
Destructor is called for nullptr 
Destructor is called for 10

从上面可以看到我们一个简单的push到vector的操作一共构建了2次,第一次是move{10}构建常量,第二次是在容器内先构造一个临时class(push_back()特点)再将其传进来就像这样Move v1(move{10});,所以会调用拷贝构造,然后将这个临时的class传入vector中(此时vector已经构建好空间),然后析构这个临时移动构造的class,最后程序结束析构这个常量

记住move{10}是常量,我们再传入左值发现会调用copy构造,将main函数的代码改成这样vector<Move> vec; Move v1(10) ; vec.push_back(v1);然后我们可以看到输出

constructor is called for 10
constructor is called for 10
copt constructor is called deep copy for 10
Destructor is called for 10
Destructor is called for 10

最后vec.push_back(Move{10});vec.push_back(Move{20});都加上打印如下

constructor is called for 10
Move Constructor for 10
Destructor is called for nullptr 
constructor is called for 20
Move Constructor for 20
constructor is called for 10
copt constructor is called deep copy for 10
Destructor is called for 10
Destructor is called for nullptr 
Destructor is called for 10
Destructor is called for 20

第一个会先调用构造函数构造常量,再调用拷贝构造,因为传入的是常量

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-04-30 09:00:48  更:2022-04-30 09:01:19 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/17 0:57:03-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码