How to write generic operations on C++ STL containers? For example, Java has Collection interface, which every Java containers (except for maps) implements. I can do operations like add, remove, contains, and iterations regardless of whether the actual container is LinkedList, HashSet, ArrayBlockingQueue, etc. I find it very powerful. C++ has iterators, but what about operations like add and remove? vector has push_back, set has insert, queue has push. How to add something to C++ container in a generic way?
|
|
Iteration: All standard containers have Insertion: All sequences and associative containers can have elements inserted into them by the expression
Removal: For any sequence or associative container the following code works:
Where For sequences there is the erase-remove idiom, which looks like:
For associative containers you can also do:
Where A nice interface to all of this: See Boost.Range. Note -- these are compile time substitutable, whereas the java ones are run time substitutable. To allow run-time substitution it is necessary to use type erasure (that is -- make a templated sub-class that forwards the required interface to the container that it is instantiated with). |
|||||||||
|
|
C++ has |
|||
|
|
|
Look at the header |
|||
|
|