Click to See Complete Forum and Search --> : Wanna learn C++


hu flung dung
02-13-2002, 06:05 PM
Hello,

I would really like to learn C++ and I already have a copy 'Microsoft Visual C++ 6.0'. However, my C+ book was copyrighted in 1994 (yes, a bit too old, I know). I just wanted to know how much C++ has changed since then and whether or not my book would be completely useless today! Should I go buy a new book?

Oh, and I really like the changes on this site! :)

schnarf283
02-13-2002, 08:38 PM
It hasn't really changed much. Your book's fine.

Sparky_D
02-13-2002, 09:36 PM
Originally posted by hu flung dung
Hello,

I would really like to learn C++ and I already have a copy 'Microsoft Visual C++ 6.0'. However, my C+ book was copyrighted in 1994 (yes, a bit too old, I know). I just wanted to know how much C++ has changed since then and whether or not my book would be completely useless today! Should I go buy a new book?

Oh, and I really like the changes on this site! :)

C++ as a language has not changed. However, the STL libraries have changed over the years, depending upon the IDE developer (ie. Borland vs. Microsoft). However, the changes are MOSTLY implementation changes, so this should only really be a concern for you if you're trying to port code from 1994 over to today. :D

For instance, the STL libraries that come with Visual Studio .NET are WAY WAY better than the one that comes with Visual C++ 6.0....believe me, we just had this problem at work.

We had port ALL of our code back to Visual C++ 6.0 because Microsoft decided to delay releasing Visual Studio .NET a little later than the beta run for our application. Although we are Microsoft .NET :rolleyes: partners, we cannot release the program using Visual Studio .NET until it is OFFICIALLY released :rolleyes: ....aw well. The only reason I sound upset is because I have spent over a week trying to get the STL library to properly compile our code :D.