C++10中的移动语义

本文探讨了C++11引入的移动语义(Move Semantics),旨在提高程序效率,避免对象拷贝。通过右值引用实现,移动语义通过移动构造函数和移动赋值运算符实现内存所有权转移。示例展示了如何为对象添加移动语义,并通过swap函数说明移动语义在减少复制开销中的应用。
摘要由CSDN通过智能技术生成

首先,我们来看这样一个函数:
(T为一个对象类型)

T clone(const T& rhs)
{
    T other = rhs;
    return other;
}

这样的函数中,其实会调用两次拷贝构造函数。我们写一个实例看看:

class Example
{
public:
    Example();
    Example(const Example& other);
    ~Example();

    Example clone();

public:
    int count;
    int* pNumber;
};
#include "move_semantic.h"
#include <iostream>

using namespace std;

Example::Example()
{
    cout << "默认构造函数..." << '\n';
}

Example::Example(const Example& other)
{
    count = other.count;
    pNumber = new int[count];
    // 深拷贝
    for (
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值