I'm just beginning to get into C++ and I want to pick up some good habits. If I have just allocated an array of type int with the new operator, how can I initialise them all to 0 without looping through them all myself? Should I just use memset? Is there a “C++” way to do it?
|
|
|||
|
It's a surprisingly little-known feature of C++ (as evidenced by the fact that no-one has given this as an answer yet), but it actually has special syntax for default-initializing an array (well, technically, it's called "value-initialize" in the Standard):
Note that you must use the empty parentheses - you cannot, for example, use This is explicitly permitted by ISO C++03 5.3.4[expr.new]/15, which says:
and does not restrict the types for which this is allowed, whereas the |
|||||||||||||||||
|
|
Assuming that you really do want an array and not a std::vector, the "C++ way" would be this
But be aware that under the hood this is still actually just a loop that assigns each element to 0 (there's really not another way to do it, barring a special architecture with hardware-level support). |
|||||||||
|
|
Yes there is:
Use a vector instead of a dynamically allocated array. Benefits include not having to bother with explicitely deleting the array (it is deleted when the vector goes out of scope) and also that the memory is automatically deleted even if there is an exception thrown. |
|||||||||||||||||||||
|
|
If the memory you are allocating is a class with a constructor that does something useful, the operator new will call that constructor and leave your object initialized. But if you're allocating a POD or something that doesn't have a constructor that initializes the object's state, then you cannot allocate memory and initialize that memory with operator new in one operation. However, you have several options: 1) Use a stack variable instead. You can allocate and default-initialize in one step, like this:
2) use 3) Many operating systems have calls that do what you want - allocate on a heap and initialize the data to something. A Windows example would be 4) This is usually the best option. Avoid having to manage the memory yourself at all. You can use STL containers to do just about anything you would do with raw memory, including allocating and initializing all in one fell swoop:
|
||||
|
|
|
For setting an array of primitive integer types to 0 specifically, For my part, I pretty much always use a loop. (I don't like to second-guess people's intentions, but it is true that |
|||
|
|
|
There is number of methods to allocate an array of intrinsic type and all of these method are correct, though which one to choose, depends... Manual initialisation of all elements in loop
Using
Using
Using
If C++0x available, using initializer list features
|
|||
|
|
|
Typically for dynamic lists of items, you use a Generally I use memset or a loop for raw memory dynamic allocation, depending on how variable I anticipate that area of code to be in the future. |
|||
|
|
|
you can always use memset:
|
|||||||||||||||
|
&vector[0]. – jamesdlin Feb 5 '10 at 1:54