Re: C++... is it dying?
On Jul 20, 11:43 pm, peter koch <peter.koch.lar...@gmail.com> wrote:
On 20 Jul., 21:29, rpbg...@yahoo.com (Roland Pibinger) wrote:
On Sun, 20 Jul 2008 12:11:21 -0500, Sam <sam@...com> wrote:
In the grand scheme of things, STL matured fairly recently.
Plenty of code still around, dating back from pre-STL days.
STL was introduced in 1995 and standardized in 1998. It came
from a single source and was usable from the beginning
(although popular compilers didn't support all STL
features). Moreover, STL was tremendously hyped for years
(this is not an exaggeration as anyone interested in C++ in
the late nineties can confirm). STL's low rate of adoption
is rooted primarily in the STL, not in lazy and unwilling
programmers.
The major STL problems are obvoius by now:
- restricion to value semantics
- template obfuscation, esp. through allocators
- non-optimal iterator design
Is this indeed so? I just don't see how having STL not being
value-based could be possible in the first place.
The STL is value-based because C++ is value-based. It would be
trivial to design the library otherwise, but such designs don't
"fit in" with the rest of the language. Many early libraries,
back before there were templates, did have containers of
Object*, and require everything in the containers to derive from
Object. It didn't work, and even back then, it was found
preferrable to use <generic.h>, with all its horrors, than to go
the route of reference semantics. There are (or have been) many
libraries better designed than STL, but they've all used value
semantics as well.
Secondly, I do not see the real obfuscation. How often do you
need to use e.g. std::vector with anything but the standard
allocator?
I agree that the best thing to do with the allocator argument is
to forget it. I does come into play if you try to use some of
the more advanced features of C++, however, like template
template parameters.
With regards to the third point, the iterator design of the STL
is a desaster, but most of the time, you can make it work
anyway.
I have never used a standard container with a non-standard
container, and every C++ project I've been developing has
taken advantage of the standard containers - to great benefit
IMO.
Having something standard is always a benefit. Often enough of
one to outweigh certain technical disadvantages.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34