Notes on "memory and resources" of Stroustrup's "The C++ Programming Language".
Notes on âmemory and resourcesâ of Stroustrupâs âThe C++ Programming Languageâ.
Some chapter 34 notes.
array
Thereâs a fixed size array type designed to replace raw C style arrays. It doesnât appear that it is bounds checked by default, and the Xcode7 (clang) compiler doesnât do bounds checking for it right now. Hereâs an example
#include <array> using a10 = std::array<int, 10> ; void foo( a10 & a ) { a[3] = 7 ; a[13] = 7 ; } void bar( int * a ) { a[3] = 7 ; a[13] = 7 ; }
View On WordPress













