InterviewSolution
| 1. |
Why Should A C++ Programmer Be Interested In The Stl? |
|
Answer» Because the STL embodies the concept of reusable software COMPONENTS, and provides off-the-shelf SOLUTIONS to a wide variety of programming problems. It is also EXTENSIBLE, in the sense that any programmer can write new software (containers and algorithms, for example), that "fit in" to the STL and work with the already-existing parts of the STL, provided the programmer follows the APPROPRIATE design guidelines. Because the STL embodies the concept of reusable software components, and provides off-the-shelf solutions to a wide variety of programming problems. It is also extensible, in the sense that any programmer can write new software (containers and algorithms, for example), that "fit in" to the STL and work with the already-existing parts of the STL, provided the programmer follows the appropriate design guidelines. |
|