InterviewSolution
| 1. |
What Are Some Other Components Of The Stl? |
|
Answer» Other STL components include function OBJECTS (objects of a class that defines operator()), or allocators (which manage memory allocation and deal location for containers). Function objects are ESSENTIAL for effective use of the STL, but the AVERAGE user will be able to ignore allocators most of the time by simply accepting the DEFAULT allocator for each container USED. Other STL components include function objects (objects of a class that defines operator()), or allocators (which manage memory allocation and deal location for containers). Function objects are essential for effective use of the STL, but the average user will be able to ignore allocators most of the time by simply accepting the default allocator for each container used. |
|