开发者

Why do I need to call new? [duplicate]

This question already has answers here: Closed 12 years ago.

Possible Duplicates:

When to use “new” and when not to, in C++?

When should I use the new keyword in C++?

开发者_运维百科

It seems like I could program something without ever using the word new, and I would never have to worry about deleting anything either, so why should I ever call it?

From what I understand, it's because I would run out of stack memory.

Is this correct? I guess my main question is, when should I call new?


It's a matter of object lifetime: if you stack-allocate your objects, the objects destructors will be called when these objects go out of scope (say, at the end of the method). This means that if you pass these objects out of the method that created them, you'll find yourself with pointers to memory that could be overwritten at any time.


It's because you may not know at compile time whether you need an object, or how many, or of what type. The new operator allows you to dynamically allocate objects without having to know such things in advance.

Here's an example of not knowing the type of object in advance:

class Account { ... };
class CheckingAccount : public Account { ... };
class VisaAccount : public Account { ... };

...

Account *acct = type == "checking" ? new CheckingAccount : new VisaAccount;


The main reason you'll need to use new/delete is to get manual control the lifetime of your objects.

Other reasons are already provided by others but I think it's the more important. Using the stack, you know exatly the lifetime of your objects. But if you want an object to be destroyed only after an event occurs, then it cannot be automatically defined.


The lifetime of the data/objects created on the stack is restricted to the block. You cannot return references/pointers to it. For data to be available across functions, you can create it on the heap with new. Of course, it can be at a higher level, or even global. But you seldom know at compile time how much data/how many objects will be needed at run time.


You can write a many non-trivial programs without ever calling "new." (or thus delete).

What you wouldn't be able to do (at least without writing or using your own equivalents) is decide what type of objects or how many you want to create at run-time, so you'd be limiting yourslef.


[updated]

You can use new to create new instance of some class, or allocate memory (for array for example), like

Object o = new Object();

Before creating new instance of class Object, you cannot use it. (Unless you have static methods.)(this is just one example of usage, sometimes other objects will instantiate or destroy objects that you need/don't need)

There are many good answers here but it is difficult to explain everything about new in one reply on SO, and if you do not understand what happens when new is called then it is difficult to know when to use it. This is one of the most important areas in programming so, after reading basic information here you should study it in more detail. Here is one of possible articles where you could start your research:

http://en.wikipedia.org/wiki/New_%28C%2B%2B%29

Topics that you will have to learn in order to understand what happens when you call new, so that you then could understand when to call it (there are more probably but this is what i can think of now): - constructors (and destructors) - static classes and methods ...

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜