c++ 使用引用防止类的拷贝构造

举一个例子,例子中类的成员函数返回了类的引用,从而避免了类的拷贝构造,提高了效率

#include <iostream>
#include <vector>
#include <cstdio>

using namespace std;

class VectorRef
{
    std::vector<int> vecInts;
public:
    VectorRef(int size = 5)
    {
        for (int i = 0; i < size; i++)
        {
            vecInts.push_back(i);
        }
    }
    **std::vector<int>& GetVecIns()**
    {
        return vecInts;
    }
};

void PrintVecInts(**const std::vector<int> &vecInts**)
{
    printf("\n");
    for (size_t i = 0; i < vecInts.size(); i++)
    {
        printf("%d cur value = %d\n", i, vecInts[i]);
    }
}

void TestVecInts()
{
    VectorRef vRef;
    **vector<int>& v = vRef.GetVecIns();**
    v.at(0) = 100;
    PrintVecInts(v);
    PrintVecInts(vRef.GetVecIns());
}
int main()
{
    TestVecInts();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值