to allocate memory dynamically to a class

S

stonny

Hi, I saw a program like the following:


*******************************************
class Image
{
public:
...
Private:
...
};

Image * imagePtr;
imagePtr = new Image();
....
delete imagePtr;
*********************************************

Why the sentence is: image = new Image()?

I thought it should be : image = new Image{}.

Thanks

Stonny
 
P

peter koch

stonny said:
Hi, I saw a program like the following:


*******************************************
class Image
{
public:
...
Private:
...
};

Image * imagePtr;
imagePtr = new Image();
...
delete imagePtr;
*********************************************

Why the sentence is: image = new Image()?

Because the standard says so.
I thought it should be : image = new Image{}.

Ok. Youre wrong then - what made you think so?

/Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top