To STL or not to STL



 DEVELOP > c-Plus-Plus > To STL or not to STL

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 2

1

 

2

 
Topic: DEVELOP > c-Plus-Plus
User: "Allan Bruce"
Date: 16 Oct 2003 05:12:51 AM
Object: To STL or not to STL
Hi there,
I am interested to know if there are any C++ programmers who do not use STL.
I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)
Thanks
Allan
--
Allan Bruce
Dept. of Computing Science
University of Aberdeen
Aberdeen AB24 3UE
Scotland, UK
.

User: "jeffc"

Title: Re: To STL or not to STL 16 Oct 2003 05:28:17 PM
"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message
news:bmlqta$4gb$1@news.freedom2surf.net...

Hi there,

I am interested to know if there are any C++ programmers who do not use

STL.

I have been coding in C++ for a year or so now, although only recently

have

I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

Well, I think I'd get pretty tired of constantly reinventing the wheel.
Depending on the project I've used Microsoft MFC, or Rogue Wave library, or
STL, etc. So if you don't use STL, I hope you're at *least* using *some*
library that at *least* gives you a string :-)
.

User: "d2003xx"

Title: Re: To STL or not to STL 16 Oct 2003 10:32:06 AM
"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message news:<bmlqta$4gb$1@news.freedom2surf.net>...

Hi there,

I am interested to know if there are any C++ programmers who do not use STL.
I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

me. Because it slows down the compilation too much (I hate waiting..)
.

User: ""

Title: Re: To STL or not to STL 16 Oct 2003 02:43:05 PM
"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message news:<bmlqta$4gb$1@news.freedom2surf.net>...
[to STL or not as the subject says]
Think of it this way:
- The STL is available to anybody with a recent C++ compiler.
- The STL is far more likely to be transportable than any code
you write to replace it.
- The STL is documented in several very good texts.
- The previous includes how to make the STL peform efficiently
in very many common situations and applications.
- Also included is how to choose the right container for the job.
- Also included are many considerations on how to avoid trouble,
what contained objects are required to do or provide, how to
debug trouble, how to instrument things to see how things are
doing, how to prevent resource leaks, etc. etc.
- There are several good places to discuss the STL with experts,
one such place being here.
- There is an absolute boatload of available examples in STL.
- There are many experienced STL users. New team members are likely
to already be experienced with STL.
- There are web sites that compare compilers based on, among other
things, how well they implement the STL.
- Learning the STL, and learning it well, is likely to make you a
more attractive member of future development teams.
So, if you hack together some cobbled kludge to replace the STL:
- You won't find any examples.
- You will have to provide your own documentation.
- You won't get much help from experts.
- If you want to hire somebody to help on your project, you will
have to train them up in your hacked kludge.
- If it runs slowly, you won't get help on making it faster.
- If you have memory leaks, space issues, etc., there won't be
any articles in magazines to help you.
- Your experience with this hack is unlikely to make you a more
attractive member of future software development teams.
In other words, this is one of those cases where standardization
is a very good thing. As somebody else said, the only reason not
to use the STL would be if you were handed an existing library
that provided all the functionality you needed. For example,
MFC based apps might not use the STL. Though I usually do anyway,
on those occasions I write an MFC app.
Socks
.

User: "Ron Natalie"

Title: Re: To STL or not to STL 16 Oct 2003 11:08:50 AM
"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message news:bmlqta$4gb$1@news.freedom2surf.net...

Hi there,

I am interested to know if there are any C++ programmers who do not use STL.

I'm assuming by STL we're talking about the standard C++ library (as opposed to
the old thing called the STL which precedes it).
If they never use it, they've got their head stuck some where.

I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

Yes you are. If there is a feature supported by the library, you're better
off using it than rolling your own. They make things much simpler. For
example, vector and string both have reasonable copy/assignment/destruction
behavior which means you don't have to sit there managing memory with new and
delete.
.
User: "Mike Wahler"

Title: Re: To STL or not to STL 16 Oct 2003 01:38:37 PM
"Ron Natalie" <ron@sensor.com> wrote in message
news:3f8ec298$0$69369$9a6e19ea@news.newshosting.com...


"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message

news:bmlqta$4gb$1@news.freedom2surf.net...

Hi there,

I am interested to know if there are any C++ programmers who do not use

STL.


I'm assuming by STL we're talking about the standard C++ library (as

opposed to

the old thing called the STL which precedes it).

If they never use it, they've got their head stuck some where.

I have been coding in C++ for a year or so now, although only recently

have

I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

Yes you are. If there is a feature supported by the library, you're

better

off using it than rolling your own. They make things much simpler. For
example, vector and string both have reasonable

copy/assignment/destruction

behavior which means you don't have to sit there managing memory with new

and

delete.

Also IMO equally important, not only is the code portable to
other platforms without all the 'hand rolled' baggage, but it's
also 'comprehension portable'. Any good C++ programmer recognizes
e.g. std::vector<std::string> as quickly and readily as he does
e.g. a 'for' loop.
One might compare this concept with e.g. the consistent sizes,
shapes, and colors of various types of road signs as in the
U.S., IMO a Good Thing(tm). "Everybody knows what they mean."
Who needs to pause to actually *read* the word "stop" on a
stop-sign? A red and white octagon at an intersection immediately
conveys the message, allowing one to focus on other important
things, such as keeping an eye on that child on a bicycle riding
on the shoulder.
Those little rascals are just like program bugs, they'll dart
out in front of you with no warning. (Happened to me this morning,
that's what evoked the analogy.) Other than being a bit rattled
by the tire screech and my scolding, he's OK. :-)
-Mike
.
User: "Karl Heinz Buchegger"

Title: Re: To STL or not to STL 16 Oct 2003 01:44:24 PM
Mike Wahler wrote:



Also IMO equally important, not only is the code portable to
other platforms without all the 'hand rolled' baggage, but it's
also 'comprehension portable'. Any good C++ programmer recognizes
e.g. std::vector<std::string> as quickly and readily as he does
e.g. a 'for' loop.

One might compare this concept with e.g. the consistent sizes,
shapes, and colors of various types of road signs as in the
U.S., IMO a Good Thing(tm). "Everybody knows what they mean."

Aaahhhh. You mean the white "PED XING" painted on the street :-)
I had quite a funny time figuring out what that could mean when
visiting the US the first time. (Keep in mind: I am not a native
english speaker)
--
Karl Heinz Buchegger
kbuchegg@gascad.at
.
User: "Mike Wahler"

Title: Re: [OT] To STL or not to STL 16 Oct 2003 02:54:45 PM
"Karl Heinz Buchegger" <kbuchegg@gascad.at> wrote in message
news:3F8EE708.BAF9DD32@gascad.at...


Mike Wahler wrote:


Also IMO equally important, not only is the code portable to
other platforms without all the 'hand rolled' baggage, but it's
also 'comprehension portable'. Any good C++ programmer recognizes
e.g. std::vector<std::string> as quickly and readily as he does
e.g. a 'for' loop.

One might compare this concept with e.g. the consistent sizes,
shapes, and colors of various types of road signs as in the
U.S., IMO a Good Thing(tm). "Everybody knows what they mean."


Aaahhhh. You mean the white "PED XING" painted on the street :-)

As I'm sure you've figured out by now, that's "Pedestrian
Crossing." But those are usually only found in the more
urban or suburban areas. "Stop signs" appear at any intersection
without electric light signals, urban area or not (with some
exceptions, e.g. "Yield" signs on lower traffic roads, again
with a standard color and shape -- yellow triangle.) Both
those types of sign, and many others, also often appear on
the bedroom doors or walls of juvenile delinquents. :-)
[End of driving lesson.] :-)

I had quite a funny time figuring out what that could mean when
visiting the US the first time. (Keep in mind: I am not a native
english speaker)

It means "Don't Zing the Peds" :-)
My mother recounted many such comprehension 'adventures'
during her six-month stay in Paris. (And she had taken
two years of French lessons in preparation for the trip. :-))
-Mike
.

User: "WW"

Title: Re: To STL or not to STL 16 Oct 2003 02:52:15 PM
Karl Heinz Buchegger wrote:

Aaahhhh. You mean the white "PED XING" painted on the street :-)
I had quite a funny time figuring out what that could mean when
visiting the US the first time.

Cross your legs? ;-)
--
WW aka Attila
.



User: "Samuel Barber"

Title: Re: To STL or not to STL 16 Oct 2003 05:57:26 PM
"Ron Natalie" <ron@sensor.com> wrote in message news:<3f8ec298$0$69369$9a6e19ea@news.newshosting.com>...

Yes you are. If there is a feature supported by the library, you're better
off using it than rolling your own. They make things much simpler. For
example, vector and string both have reasonable copy/assignment/destruction
behavior which means you don't have to sit there managing memory with new and
delete.

Read up on "move constructors" and you might change your opinion of
what is reasonable behavior.
Sam
.
User: "Ron Natalie"

Title: Re: To STL or not to STL 16 Oct 2003 06:10:41 PM
"Samuel Barber" <opendtv@yahoo.com> wrote in message news:37991aef.0310161457.37f35adf@posting.google.com...

"Ron Natalie" <ron@sensor.com> wrote in message news:<3f8ec298$0$69369$9a6e19ea@news.newshosting.com>...

Yes you are. If there is a feature supported by the library, you're better
off using it than rolling your own. They make things much simpler. For
example, vector and string both have reasonable copy/assignment/destruction
behavior which means you don't have to sit there managing memory with new and
delete.


Read up on "move constructors" and you might change your opinion of
what is reasonable behavior.

That's a different issue. I'm talking about the copying and destruction of the
container itself (rather than the contained object).
.
User: "Samuel Barber"

Title: Re: To STL or not to STL 17 Oct 2003 01:25:37 AM
"Ron Natalie" <ron@sensor.com> wrote in message news:<3f8f2572$0$182$9a6e19ea@news.newshosting.com>...

"Samuel Barber" <opendtv@yahoo.com> wrote in message news:37991aef.0310161457.37f35adf@posting.google.com...

"Ron Natalie" <ron@sensor.com> wrote in message news:<3f8ec298$0$69369$9a6e19ea@news.newshosting.com>...

Yes you are. If there is a feature supported by the library, you're better
off using it than rolling your own. They make things much simpler. For
example, vector and string both have reasonable copy/assignment/destruction
behavior which means you don't have to sit there managing memory with new and
delete.


Read up on "move constructors" and you might change your opinion of
what is reasonable behavior.


That's a different issue. I'm talking about the copying and destruction of the
container itself (rather than the contained object).

What's so wonderful about that? Usually, programmers go to great
lengths to avoid copying containers. C++ makes it all too easy to
write elegant code which is grossly inefficient, due to implicit
copying of large objects.
Sam
.
User: "Tõnu Aas"

Title: Re: To STL or not to STL 17 Oct 2003 02:29:28 AM

Yes you are. If there is a feature supported by the library,

you're better

off using it than rolling your own. They make things much simpler.

Read up on "move constructors" and you might change your opinion of
what is reasonable behavior.

That's a different issue. I'm talking about the copying and destruction

of the

container itself (rather than the contained object).

What's so wonderful about that? Usually, programmers go to great
lengths to avoid copying containers. C++ makes it all too easy to
write elegant code which is grossly inefficient, due to implicit
copying of large objects.
? > What makes you think his reinvented wheel is better?

There are so many "wheel inventers". Ask yourself why.
And the best answer is: "STL makes it too easy to write elegant code which
is grossly inefficient" (not C++)
So are people inventing "wheels" like intrusive containers and so on.
Its strange that programmers are so happy with STL and just buy new computer
and
add xxxGB memory into it.
Second myth - portability - isnt so good also. If you live on windows
plaform only, then its o.k.,
but if you are not using main path, then you are in trouble.
Tõnu.
.

User: "lilburne"

Title: Re: To STL or not to STL 17 Oct 2003 02:35:39 PM
Samuel Barber wrote:


What's so wonderful about that? Usually, programmers go to great
lengths to avoid copying containers. C++ makes it all too easy to
write elegant code which is grossly inefficient, due to implicit
copying of large objects.

Some guidelines make copy constructors and assignment
operators private, to avoid such problems. Instead the
recommendation is to have explicit methods on the class that
have to be called.
.





User: "Christopher Benson-Manica"

Title: Re: To STL or not to STL 16 Oct 2003 07:50:22 AM
Allan Bruce <allanmb@takeawayf2s.com> spoke thus:

I am interested to know if there are any C++ programmers who do not use STL.
I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

FWIW, the director of programming at my company is an old DOS h4x0r, and he
long ago wrote code that completely wraps/replaces (I can't say which...) the
STL. His reasoning is that the STL (std::vectors, particularly), didn't
behave like he wanted, and anyway he's a real "reinvent a better wheel" type
of guy.
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
.
User: "Ron Natalie"

Title: Re: To STL or not to STL 16 Oct 2003 11:09:22 AM
"Christopher Benson-Manica" <ataru@nospam.cyberspace.org> wrote in message news:bmm46e$grp$3@chessie.cirr.com...

behave like he wanted, and anyway he's a real "reinvent a better wheel" type

What makes you think his reinvented wheel is better?
..
.
User: "Christopher Benson-Manica"

Title: Re: To STL or not to STL 16 Oct 2003 12:54:52 PM
Ron Natalie <ron@sensor.com> spoke thus:

What makes you think his reinvented wheel is better?

Nothing, necessarily. His philosophy is that he'd rather debug his own code
rather than someone else's. I think the main reason we don't use the STL is
that he started writing code 20 years ago, and back then I imagine his code
may very well have been superior to the STL. One advantage is that when I
want a "standard" class to do something different, I've got the implementor of
the class sitting two desks away, and in 10 minutes I have what I want. The
disadvantage, of course, is that should I find employment elsewhere, my new
boss probably will not be pleased that I know nothing about the standard
template library.
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
.
User: "Ron Natalie"

Title: Re: To STL or not to STL 16 Oct 2003 01:11:31 PM
"Christopher Benson-Manica" <ataru@nospam.cyberspace.org> wrote in message news:bmmm1c$iet$2@chessie.cirr.com...

Ron Natalie <ron@sensor.com> spoke thus:

What makes you think his reinvented wheel is better?


Nothing, necessarily. His philosophy is that he'd rather debug his own code
rather than someone else's.

My philosophy is that the standard library is usually already debugged. Certainly
any bugs in it are much easier to deal with than reimplementing it and debugging
and providing ongoing support for an equivelent amout of code.

I think the main reason we don't use the STL is
that he started writing code 20 years ago, and back then I imagine his code
may very well have been superior to the STL.

That is true. C++ wasn't really usable more than about 10 years ago. I've been
programming in C since 1977. Times change. He needs to shed his antiquated
belief systems. Many people who transition to C++ suffer from this brain damage.

The
disadvantage, of course, is that should I find employment elsewhere, my new
boss probably will not be pleased that I know nothing about the standard
template library.

Absolutely, you'd have extreme difficulty with an interview here.
.
User: "Christopher Benson-Manica"

Title: Re: To STL or not to STL 17 Oct 2003 03:21:21 PM
Ron Natalie <ron@sensor.com> spoke thus:

My philosophy is that the standard library is usually already debugged. Certainly
any bugs in it are much easier to deal with than reimplementing it and debugging
and providing ongoing support for an equivelent amout of code.

Not so much in the STL (since he never uses it...), but in other code
libraries, he's had to "roll his own" since it was completely impossible to
get what he wanted otherwise. For example (if you'll excuse my venture into
OT territory...), Microsoft and Borland have facilities for dealing with dates
and times, but apparently they just don't work right for our purposes.

That is true. C++ wasn't really usable more than about 10 years ago. I've been
programming in C since 1977. Times change. He needs to shed his antiquated
belief systems. Many people who transition to C++ suffer from this brain damage.

Quite possibly, although that's not really one can say to one's boss ;) At
this point, he's really already done all the work anyway, so from his
perspective his code is superior, since he doesn't have to learn how to use
it (as he might with the STL).

Absolutely, you'd have extreme difficulty with an interview here.

I may have to invest some time in self-teaching myself, since I don't imagine
I'll be working here for the next 40 years. The problem I always have is
finding some meaningful task to accomplish - I've never been able to just read
a book and get anything useful out of it, or even do silly little tutorial
programs and get anything out of them. What to do...
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
.





User: "=?iso-8859-1?Q?Andr=E9_P=F6nitz?="

Title: Re: To STL or not to STL 16 Oct 2003 07:22:35 AM
Allan Bruce <allanmb@takeawayf2s.com> wrote:

I am interested to know if there are any C++ programmers who do not use STL.

Can't speeak for the others by I certainly do not build all the general
purpose containers myself. Why should I?
Andre'
.

User: "Graeme Cogger"

Title: Re: To STL or not to STL 16 Oct 2003 08:19:19 AM
Allan Bruce wrote:


Hi there,

I am interested to know if there are any C++ programmers who do not use STL.
I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

Thanks
Allan

I'd say that the biggest group of programmers that don't use the
standard library would have to be those writing Windows apps using the
MFC library. Since MFC provides similar types of classes (strings,
containers), the majority of programmers that I know have little
knowledge of the standard library.
.
User: "Ron Natalie"

Title: Re: To STL or not to STL 16 Oct 2003 11:10:01 AM
"Graeme Cogger" <graeme.coggerSPAMLESS@baesystems.com> wrote in message news:3F8E9AD7.8E13785E@baesystems.com...

I'd say that the biggest group of programmers that don't use the
standard library would have to be those writing Windows apps using the
MFC library. Since MFC provides similar types of classes (strings,
containers), the majority of programmers that I know have little
knowledge of the standard library.

The majority of people who think the world ends at the MFC boundary
perhaps. I wouldn't say a majority of C++ programmers.
.
User: "Mike Wahler"

Title: Re: To STL or not to STL 16 Oct 2003 01:17:57 PM
"Ron Natalie" <ron@sensor.com> wrote in message
news:3f8ec2de$0$69313$9a6e19ea@news.newshosting.com...


"Graeme Cogger" <graeme.coggerSPAMLESS@baesystems.com> wrote in message

news:3F8E9AD7.8E13785E@baesystems.com...


I'd say that the biggest group of programmers that don't use the
standard library would have to be those writing Windows apps using the
MFC library. Since MFC provides similar types of classes (strings,
containers), the majority of programmers that I know have little
knowledge of the standard library.


The majority of people who think the world ends at the MFC boundary
perhaps. I wouldn't say a majority of C++ programmers.

I write quite a bit of Windows code myself, at first it was
only in C, but now moreso in C++. Guess what I use for string
handling, containers, and much of the i/o? Standard Library.
MFC? Ten-foot-pole, and all that. :-)
-Mike
.
User: "WW"

Title: Re: To STL or not to STL 16 Oct 2003 02:49:12 PM
Mike Wahler wrote:

MFC? Ten-foot-pole, and all that. :-)

What does that mean?
--
WW aka Attila he Englishly challenged :-)
.
User: "Mike Wahler"

Title: Re: To STL or not to STL 16 Oct 2003 03:00:22 PM
"WW" <wolof@freemail.hu> wrote in message
news:bmmsmr$nrn$1@phys-news1.kolumbus.fi...

Mike Wahler wrote:

MFC? Ten-foot-pole, and all that. :-)


What does that mean?

A colloquialism (I don't know the origin). Referring to
something or someone considered undesirable, "I wouln't
touch that with a ten-foot-pole." Meaning essentially
"I would not touch that, or even go within ten feet of it."
(about three metres to you. :-))
-Mike
.
User: "WW"

Title: Re: To STL or not to STL 16 Oct 2003 03:06:25 PM
Mike Wahler wrote:

"WW" <wolof@freemail.hu> wrote in message
news:bmmsmr$nrn$1@phys-news1.kolumbus.fi...

Mike Wahler wrote:

MFC? Ten-foot-pole, and all that. :-)


What does that mean?


A colloquialism (I don't know the origin). Referring to
something or someone considered undesirable, "I wouln't
touch that with a ten-foot-pole." Meaning essentially
"I would not touch that, or even go within ten feet of it."
(about three metres to you. :-))

Ah, OK. It is like the bone on the neck thing, then. :-)
--
WW aka Attila
.
User: "JB"

Title: Re: To STL or not to STL 17 Oct 2003 12:16:14 AM
"WW" <wolof@freemail.hu> wrote in message news:<bmmtn4$raq$1@phys-news1.kolumbus.fi>...

Mike Wahler wrote:

"WW" <wolof@freemail.hu> wrote in message
news:bmmsmr$nrn$1@phys-news1.kolumbus.fi...

Mike Wahler wrote:

MFC? Ten-foot-pole, and all that. :-)


What does that mean?


A colloquialism (I don't know the origin). Referring to
something or someone considered undesirable, "I wouln't
touch that with a ten-foot-pole." Meaning essentially
"I would not touch that, or even go within ten feet of it."
(about three metres to you. :-))


Ah, OK. It is like the bone on the neck thing, then. :-)

Bone on the neck?
--
JB, the Magyar-challenged ;-)
.
User: "WW"

Title: Re: To STL or not to STL 17 Oct 2003 04:44:21 AM
JB wrote:

MFC? Ten-foot-pole, and all that. :-)


What does that mean?


A colloquialism (I don't know the origin). Referring to
something or someone considered undesirable, "I wouln't
touch that with a ten-foot-pole." Meaning essentially
"I would not touch that, or even go within ten feet of it."
(about three metres to you. :-))


Ah, OK. It is like the bone on the neck thing, then. :-)


Bone on the neck?

Another joke thing. He is so ugly, his parents hung a bone on a string on
his neck so at least the dogs will play with him.
--
WW aka Attila
.




User: "Christopher Benson-Manica"

Title: Re: To STL or not to STL 16 Oct 2003 03:23:44 PM
WW <wolof@freemail.hu> spoke thus:

Mike Wahler wrote:

MFC? Ten-foot-pole, and all that. :-)

What does that mean?

Heh... in English, there is a phrase "I wouldn't touch ____ with a ten-foot
pole," meaning one wishes to stay as far away from ___ (whether ___ is a
particularly nasty person, situation, a grizzly bear, or MFC). FWIW, if I had
a ten-foot pole, I'd probably use it to bludgeon Bill Gates ;)
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
.





User: "lilburne"

Title: Re: To STL or not to STL 16 Oct 2003 01:59:28 PM
Allan Bruce wrote:

Hi there,

I am interested to know if there are any C++ programmers who do not use STL.
I have been coding in C++ for a year or so now, although only recently have
I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

We don't use the standard library. Because when the decision
to move to C++ was made in 1990 the standard library didn't
exist. Most compilers didn't support templates, and as they
became available they was buggy, poorly implemented and non
standard across different platforms. Basically you couldn't
write a portable system that used templates.
Lists, sets, vectors, maps, strings, smart pointers etc were
developed in-house using the generic macros that were the
forerunners to templates. By the time the standard library
was stable enough to use, we had our own variants that had
been used throughout the company for a number of years.
If we were starting out today then we would use the standard
library, but currently there is no incentive to use the
standard library when our own variant already does the job.
.

User: "Moonlit"

Title: Re: To STL or not to STL 16 Oct 2003 02:56:40 PM
Hi,
STL. It's fast to code, it is fast code.
A few reasons and examples from real life:
Even today just 1.5 hour before I would left work, a colleage came over he
had to figure out what records had been sent to another system. Now I'm
talking about millions of records. After figuring out that the first 30
characters for the where unique. I created a program with a set (this sorted
automatically so it can do a binary search), corrected headers and footers
in the file. I was finished with testing the program actually in 1.5 hours
(including the little research for uniqueness, creating the numbers file
etc.) Debugging time was nearly zero (ok, I forget about the headers at one
time). I was surprised about the speed myself since it had to do a lookup in
about 40 megabyte of data loaded in the set.
I have programmed in pure C and this would have taken a lot longer than
this.
I have never encountered a bug in the STL (and I use it all the time).
Sure, it does take a while before you get used to using it. But once you do
you will program faster than anyone in plain C. Not only that, I at
sometime, compared 20 lines of code almost entirely of STL stuff (with the
SGI hash_map) with someone else highly optimized C code of three pages long
(it performed the same function). I talked to him how much microseconds his
lookups took because I was very curious about that. The answer he gave was
nearly the same as I had (I believe it was something like 45 and 47), but I
am quite sure that coding 20 lines take less time than 3 pages of code not
to mention the latter takes more time to read and to debug.
At some time I had to maintain a program without manuals but with a lot of
code. I wondered how to get it up in case it would crash (management decided
no backups since the data was expendible). I read through the code, since
they used the STL a lot, this was reasonably to do. It would have been much
more difficult if I would have to dig through three times the code necessary
to acomplish the same without the STL.
Therefore I would say use and or learn STL, you will do yourself and others
a favor (and you look up to date with your C++ knowledge).
http://www.sgi.com/tech/stl/
Regards, Ron AF Greve
"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote in message
news:bmlqta$4gb$1@news.freedom2surf.net...

Hi there,

I am interested to know if there are any C++ programmers who do not use

STL.

I have been coding in C++ for a year or so now, although only recently

have

I started a large(ish)-scale project. I do not use any STL, and I was
wondering if there are any others out there that program in C++ without
using STL? (Just to see if I am being stupid by not using it)

Thanks
Allan

--
Allan Bruce
Dept. of Computing Science
University of Aberdeen
Aberdeen AB24 3UE
Scotland, UK


.


  Page 1 of 2

1

 

2

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER