c – 在STL向量中存储对象 – 最小的方法集

前端之家收集整理的这篇文章主要介绍了c – 在STL向量中存储对象 – 最小的方法集前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是复杂对象的“最小框架”(必要的方法)(具有显式的malloced内部数据),我想将其存储在STL容器中,例如<载体GT ;?

对于我的假设(复杂对象Doit的例子):

#include <vector>
#include <cstring>
using namespace std;
class Doit {
    private:
        char *a;
    public:
        Doit(){a=(char*)malloc(10);}
        ~Doit(){free(a);}
};

int main(){
    vector<Doit> v(10);
}

*** glibc detected *** ./a.out: double free or corruption (fasttop): 0x0804b008 ***
Aborted

在valgrind:

malloc/free: 2 allocs,12 frees,50 bytes allocated.

更新:

这种对象的最小方法是:(基于sbi答案)

class DoIt{
    private:
        char *a;
    public:
        DoIt() { a=new char[10]; }
        ~DoIt() { delete[] a; }
        DoIt(const DoIt& rhs) { a=new char[10]; std::copy(rhs.a,rhs.a+10,a); }
        DoIt& operator=(const DoIt& rhs) { DoIt tmp(rhs); swap(tmp); return *this;}
        void swap(DoIt& rhs) { std::swap(a,rhs.a); }
};

谢谢,sbi,https://stackoverflow.com/users/140719/sbi

解决方法

请注意,查尔斯完美地拥有 answered your question.

无论如何,根据Rule of Three,你的类有一个析构函数,也应该有一个复制构造函数和赋值运算符.

我是这样做的:

class Doit {
    private:
        char *a;
    public:
        Doit()                   : a(new char[10]) {}
        ~Doit()                    {delete[] a;}
        DoIt(const DoIt& rhs)    : a(new char[10]) {std::copy(rhs.a,a);}
        void swap(DoIt& rhs)       {std::swap(a,rhs.a);}
        DoIt& operator=(DoIt rhs)  {swap(rhs); return *this;}
};
原文链接:https://www.f2er.com/c/116608.html

猜你在找的C&C++相关文章