Consider the following code:
class myarray
{
int i;
public:
myarray(int a) : i(a){ }
}
How can you create an array of objects of myarray on stack and how can you create an array of objects on heap???
|
|
|||||||
|
|
|
You can create an array of objects on the stack via:
And on the heap:
But it's best not to do that yourself, and use a std::vector:
A vector is a dynamic array, which (by default) allocates elements from the heap.* Do you really want an array of
You can read a tutorial on array's here: http://www.cplusplus.com/doc/tutorial/arrays/ Because your class has no default constructor, to create it on the stack you need to let the compiler know what to pass into the constructor:
Or with a vector:
You cannot do it with a single new command. Of course, you could always give it a default constructor:
* If you want dynamic allocation from the stack, you'd need to define a max size (stack storage is known ahead of time), and then give vector a new allocator so it uses the stack instead. |
||||||||||
|
|
|
If you create an array of objects of class myarray ( either on stack or on heap) you would have to define a default constructor. There is no way to pass arguments to the constructor when creating an array of objects. |
||
|