Connecting Tech Pros Worldwide Help | Site Map

STL Functionality

Steve
Guest
 
Posts: n/a
#1: Jul 22 '05
Just wondering if someone can point me to a good, easy to understand
online tutorial on STL functions. All the programming manuals I have
predate STL, and I would like to learn more about modern C++ since our
school doesn't even bother with it.
Leor Zolman
Guest
 
Posts: n/a
#2: Jul 22 '05

re: STL Functionality


On 15 Apr 2004 07:04:12 -0700, gr82meetu78@yahoo.com (Steve) wrote:
[color=blue]
>Just wondering if someone can point me to a good, easy to understand
>online tutorial on STL functions. All the programming manuals I have
>predate STL, and I would like to learn more about modern C++ since our
>school doesn't even bother with it.[/color]

Here's a good C++ tutorial site:
http://www.icce.rug.nl/documents/cplusplus/

(#17 in the Table of Contents on the left will get you right to STL stuff).

If downloading an entire free book counts as "online", you can get Volume 2
of Eckel/Allison's _Thinking in C++_ which is crammed with STL info:
www.mindview.net

-leor


--
Leor Zolman --- BD Software --- www.bdsoft.com
On-Site Training in C/C++, Java, Perl and Unix
C++ users: download BD Software's free STL Error Message Decryptor at:
www.bdsoft.com/tools/stlfilt.html
Pete Vidler
Guest
 
Posts: n/a
#3: Jul 22 '05

re: STL Functionality


Steve wrote:[color=blue]
> Just wondering if someone can point me to a good, easy to understand
> online tutorial on STL functions. All the programming manuals I have
> predate STL, and I would like to learn more about modern C++ since our
> school doesn't even bother with it.[/color]

These are more like references than tutorials, but they can probably
teach you what you want to know:

http://www.cs.rpi.edu/projects/STL/htdocs/stl.html
http://dinkumware.com/manuals/reader.aspx?lib=cpp
http://www.sgi.com/tech/stl/

I imagine there are many tutorials out there that a google search for
"C++ STL tutorials" (minus quotes) or similar would find. Here are a few
I found in just a few seconds:

http://www.cs.brown.edu/people/jak/p...tltut/tut.html
http://www.yrl.co.uk/~phil/stl/stl.htmlx
http://www.msoe.edu/eecs/ce/courseinfo/stl/
http://www.infosys.tuwien.ac.at/Rese...al/prwmain.htm
http://www.yolinux.com/TUTORIALS/Lin...ialC++STL.html
http://cplus.about.com/library/blstl.htm
http://www.codeproject.com/vcpp/stl/stlintroduction.asp

-- Pete
Closed Thread