[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
arrays
In C++ it is advised to use a std::vector instead (references 1 and 2), see C++ array
References
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
arrays
array
An array is an ordered collection of information, similar to a mathematical matrix, and used in computer programming to provide a multidimensional ordered set which can be accessed by a single variable name using subscript ?parameters to identify a specific element within the array.In C++ it is advised to use a std::vector instead (references 1 and 2), see C++ array
References
- 1) Bjarne Stroustrup. The C++ Programming Language (3rd edition).ISBN: 0-201-88954-4
- 2) Herb Sutter and Andrei Alexandrescu. C++ coding standards: 101 rules, guidelines, and best practices. ISBN: 0-32-111358-6. Chapter 76: 'Use vector by default. Otherwise choose an appropriate container.'
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
