Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get an array of pointers pointing to objects (classes) ?

I need to dynamically allocate space for them and the length of array isn't determined until run-time. Can any one explain and tell me how to define it? and possibly explain them how it works, would be really nice :)

share|improve this question
Pointers to a specific class or classes derived from a singe parent or just any class? – sftrabbit Aug 18 '09 at 18:29
no no, just any class – akif Aug 18 '09 at 18:38
Variable length array's (VLA) are a non standard compiler extension. They were added to the C99 spec, and will never be added to the C++ spec. They only work because of compiler extensions implemented by intel/gnu/microsoft. Just use a vector, it's what they are for. – Brian Gianforcaro Aug 18 '09 at 21:38
I'm not asking for variable length arrays, what I said was that the length of the array won't be determined until run-time. Now does that makes them VLAs? – akif Aug 19 '09 at 6:13

4 Answers

up vote 9 down vote accepted

You can do this with a pointer to pointer to your class.

MyClass ** arrayOfMyClass = new MyClass*[arrayLengthAtRuntime];
for (int i=0;i<arrayLengthAtRuntime;++i)
    arrayOfMyClass[i] = new MyClass(); // Create the MyClass here.

// ...
arrayOfMyClass[5]->DoSomething(); // Call a method on your 6th element

Basically, you're creating a pointer to an array of references in memory. The first new allocates this array. The loop allocates each MyClass instance into that array.

This becomes much easier if you're using std::vector or another container that can grow at whim, but the above works if you want to manage the memory yourself.

share|improve this answer
1  
Correct me if I'm wrong (its been a while), but don't forget to call delete[] to release when you're finished. – John MacIntyre Aug 18 '09 at 18:33
I don't think he showed the code where you'd delete - assuming the lifespan of the array is longer than a single function call. Also, resizing this is a pain. Hence the suggestion for vector / list collection classes. – Kieveli Aug 18 '09 at 18:36
3  
Manzoor, only use delete when you have used new. You won't use new to make a vector, so don't use delete to destroy it. If you use new to allocate the things you're storing in the vector, then use delete to destroy them. – Rob Kennedy Aug 18 '09 at 18:45
2  
You want an array of pointers pointing to objects. This requires a pointer to pointer - the first points to the array (in memory), where each element of the array is pointing to your class. – Reed Copsey Aug 18 '09 at 19:38
1  
@Kievelli: I completely agree - I'd use a vector/list of some form, but I still think it's valuable to understand what's happening behind the scenes, especially with this sort of thing. – Reed Copsey Aug 18 '09 at 20:04
show 2 more comments

Use std::vector instead. It's designed to dynamically resize the collection as needed.

#include <vector>
// ...
std::vector<Class*> vec;
vec.push_back(my_class_ptr);
Class* ptr = vec[0];
share|improve this answer
thanks, I'll look into that too – akif Aug 18 '09 at 18:39
2  
A vector of pointers still has a lot of opportunity to leak if you use STL algorithms on the vector. Try to use a vector of objects rather than pointers when you can. – KJAWolf Aug 18 '09 at 19:03
1  
@KJAWolf: can you give some examples of an STL algorithm which causes a leak with std::vector<T*> ? – Evan Teran Aug 18 '09 at 20:14
1  
Or a boost::ptr_vector<Class> – Loki Astari Aug 18 '09 at 21:16
2  
He said opportunities to leak, not that the algorithms themselves inherently leak. So for example, std::set_difference creates aliases for some (but not all) of the pointers in your vector. This provides an excellent opportunity for the programmer to mis-manage resources, and hence create leaks. Enter smart pointers, stage left. – Steve Jessop Aug 18 '09 at 21:21

Use boost::ptr_vector and forget both array and pointer headaches:

boost::ptr_vector<animal> vec;
vec.push_back( new animal );
vec[0].eat();

You can add elements dynamically and you don't need to worry about deleting them.

share|improve this answer
If Boost isn't an option (sadly, this seems to be the case wherever I happen to work on C++ code, for some inane reasons), but TR1 is - e.g. you're using a recent g++ version, or VC++2008 SP1, then std::vector<std::tr1::shared_ptr<animal> > would also do the trick. – Pavel Minaev Sep 18 '09 at 20:10

I can't edit or comment yet so I have to post it in an answer: What Reed Copsey said, but with one fix. When you access elements of your array of pointers you need to access the members like this:

MyClass ** arrayOfMyClass = new MyClass*[arrayLengthAtRuntime];
for (int i=0;i<arrayLengthAtRuntime;++i)
    arrayOfMyClass[i] = new MyClass(); // Create the MyClass here.

// ...
arrayOfMyClass[5]->DoSomething(); // Call a method on your 6th element

I use this method a lot to implement my own dynamic size arrays (what std::vector is), mostly because I have Not Invented Here syndrome but also because I like to customize them to my particular use.

share|improve this answer
1  
You have Not Invented Here syndrome for std::vector? :O If so, you should really consider writing a C++ compiler too; and probably build your own CPU. – Mehrdad Afshari Aug 18 '09 at 21:51
Well it's partly because I learned to write my own vectors before I learned about the existence of std::vector, and now it's just habit ;) – Daniel Bingham Aug 19 '09 at 11:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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