[C++][Test]vector拷贝及函数参数传递中拷贝问题

Test Code

#include <iostream>
#include <vector>

class Element {
public:
    Element() {
        std::cout << "Element constructor" << std::endl;
    }
    ~Element() {
        std::cout << "Element destructor" << std::endl;
    }
    Element(const Element& _ele) {
        std::cout << "Element copy constructor" << std::endl;
    }
};

static Element g_m;

void set(Element _e) {
    g_m = _e;
}

void set_sec(Element& _e) {
    g_m = _e;
}

Element get(void) {
    return g_m;
}

void test_for_vec_copy(void) {
    std::cout << __FUNCTION__ << std::endl;
    std::vector<Element> vec;
    std::cout << vec.capacity() << std::endl;
    Element e;
    vec.push_back(e);
    std::cout << vec.capacity() << std::endl;
    vec.push_back(e);
    std::cout << vec.capacity() << std::endl;

    std::vector<Element> vec2 = vec;

    std::cout << "hahaha" << std::endl;
}

void test_for_set(void) {
    std::cout << __FUNCTION__ << std::endl;
    Element e;
    set_sec(e);
    std::cout << "-----------beautiful line------------" << std::endl;
    set(e);

    std::cout << "hahaha" << std::endl;
}

int main()
{
    test_for_vec_copy();
    test_for_set();
}

Test Result

Element constructor
test_for_vec_copy
0
Element constructor
Element copy constructor
1
Element copy constructor
Element copy constructor
Element destructor
2
Element copy constructor
Element copy constructor
hahaha
Element destructor
Element destructor
Element destructor
Element destructor
Element destructor
test_for_set
Element constructor
-----------beautiful line------------
Element copy constructor
Element destructor
hahaha
Element destructor
Element destructor

Summary

Point1 vector赋值,可能导致大量的拷贝工作
Point2 vector默认容量不足的情况下,可能导致内存的拷贝,释放

Thanks For Watching, Have a nice day!

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值