Since std::list and std::vector exist, is there a reason to use traditional C arrays in C++, or should they be avoided, just like malloc?
|
|
|||||||||
|
|
In C++11 where |
|||||||||||||||||||
|
|
Definitely, although with
If you have access to C++11, |
|||||||||||||||||||
|
|
Never say "never", but I'd agree that their role is greatly diminished by true data structures from STL. I'd also say that encapsulation inside objects should minimize the impact of choices like this. If the array is a private data member, you can swap it in or out without affecting clients of your class. |
|||
|
|
|
I have worked on safety critical systems where you are unable to use dynamic memory allocation. The memory has to always be on the stack. Therefore in this case you would use arrays as the size is fixed at compile time. |
|||||||||||||||||||
|
|
So in |
|||
|
|
|
Most usually, no, I can't think of a reason to use raw arrays over, say, You might have to resort to using arrays if your libraries need to be compatible with code that expects arrays and raw pointers. |
|||||||||||||||||
|
|
I know a lot of people are pointing out std::array for allocating arrays on the stack, and std::vector for the heap. But neither seem to support non-native alignment. If you're doing any kind of numeric code that you want use SSE or VPX instructions on (thus requiring 128 or 256 byte alignment respectively), C arrays would still seem to be your best bet. |
||||
|
|
|
I would say arrays are still useful, if you are storing a small static amount of data why not. |
|||
|
|
|
The only advantage of an array (of course wrapped in something that will manage automatically its deallocation when need) over |
|||||
|
|
C style arrays are a fundamental data structure, so there will be cases when it is better to use it. For the general case, however, use the more advanced data structures that round off the corners of the underlying data. C++ allows you to do some very interesting and useful things with memory, many of which work with simple arrays. |
|||||||||||||
|
|
You should use STL containers internally, but you should not pass pointers to such containers between different modules, or you will end up in dependency hell. Example:
is a very good solution but not
The reason is that std::string can be implemented in many different ways but a c-style string is always a c-style string. |
|||||||||||
|
|
C++ is more powerful than C,and more easily to use, Bjarne Stroustrup suggest we use pure C++ other than C in C++. the answer is : Yes, arrays should be avoided.Vector helps you avoid boring Memory-Problems. |
|||
|
|
