What is "minimal framework" (necessary methods) of object, which I will store in STL <vector>?

For my assumptions:

#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);
}

gives

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

and in valgrind:

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

UPDATE:

Minimal methods for such object are: (based on sbi answer)

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); }
};

Thanks, sbi, http://stackoverflow.com/users/140719/sbi

link|improve this question

4  
You really should use vectors of <char> instead of doing your own mallocs. This is C++ after all. – Joe Mar 23 '10 at 15:37
2  
@osgx, why insist on malloc? Is there a good reason to not use new? – Glen Mar 23 '10 at 15:40
1  
@osgx: No, the memory doesn't need to be malloced. It should be newed. And, actually, Joe is right and this should be hidden inside a std::vector. – sbi Mar 23 '10 at 15:43
2  
Of course this would be a lot simpler if you did not use C inside C++. Do NOT dynamically allocate memory unless you really need to (and you don't). Use a std::vecrtor<char>. You can initiallise it in the constructor to have 10 characters then the rest of the code is unchanged. – Loki Astari Mar 23 '10 at 16:11
1  
See here for a more detailed explanation of sbi response: stackoverflow.com/questions/255612/… – Loki Astari Mar 24 '10 at 15:30
show 14 more comments
feedback

3 Answers

up vote 7 down vote accepted

Note that Charles has answered your question perfectly.

Anyway, as per the Rule of Three, your class, having a destructor, should have a copy constructor and an assignment operator, too.

Here's how I would do it:

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);}
        void swap(DoIt& rhs)       {std::swap(a,rhs.a);}
        DoIt& operator=(const DoIt& rhs) 
                                   {DoIt tmp(rhs); swap(rhs); return *this;}
};
link|improve this answer
Can you provide the code of copy constructor and assignment operator for my case? – osgx Mar 23 '10 at 15:35
@osgx: I have added the code. – sbi Mar 23 '10 at 15:42
I think you're missing a colon after the Doit() constructor – AshleysBrain Mar 23 '10 at 16:00
@AshleysBrain; Thanks. I fixed it. – sbi Mar 23 '10 at 16:08
1  
@osgx, no one's blaming anyone for anything. Clarifications like this are designed to help the person who asked the question, in this case you, get the best possible answer. – Glen Mar 23 '10 at 16:50
show 8 more comments
feedback

All types that you use must be CopyConstructible and Assignable.

CopyConstructible for a type T means that if t is a T or a const T then the expression T(t) must produce an equivalent T to the original t; t.~T() must be valid (accessible destructor); and &t must give the address of t as a [const] T*.

Assignable means that for a T, t and a T value u, the expression t = u must make t equivalent to u and be of type T&.

Note that all these requirements are met by simple built-in types and POD-structs. If you do anything non-trivial in a destructor or constructor you must ensure that the copy constructor and copy assignment operator preserver the equivalence semantics.

link|improve this answer
feedback

All vector requires is that the object is "assignable", which means that it needs an copy-constructor, destructor, and assignment operator, which are all generated by default if you don't supply them yourself.

As sbi says, if you need one of those functions then you probably need them all. In your case, you'll need to also provide a copy constructor and assignment operator to avoid heap corruption.

link|improve this answer
Copyable != assignable. – anon Mar 23 '10 at 15:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.