In the days before c++ and vector/lists, how did they expand the size of arrays when they needed to store more data?
|
|
Typical C code looks like this:
Note that if realloc fails then it returns zero but the old memory is still valid, this typical usage causes memory leak:
Unfortunately it is very common; Also note that there is nothing special about C++ vector/list. Similar structures can be implemented in C, just the syntax (and error handling) look different. For example see LodePNG's analog of std::vector for C. |
|||||||||||||||||||
|
|
A lot of C projects end up implementing a vector-like API. Dynamic arrays are such a common need, that it's nice to abstract away the memory management as much as possible. A typical C implementation might look something like:
Then they would have various API function calls which operate on the
Then of course, you need functions for
Usually, when a reallocation is needed, An actual vector implementation in C might use |
||||
|
|
|
They would start by hiding the defining a structure that would hold members necessary for the implementation. Then providing a group of functions that would manipulate the contents of the structure. Something like this:
Further to this they would achieve encapsulation by using void* in the place of vec* for the function group, and actually hide the structure definition from the user by defining it within the C module containing the group of functions rather than the header. Also they would hide the functions that you would consider to be private, by leaving them out from the header and simply prototyping them only in the C module. |
|||
|
|
