C++ Where to start?
-
the best book i've ever read on C++ is The C++ Language[^], written by the creator of the language, Bjarne Stroustrup. i found it so complete that i now have it at home...
TOXCCT >>> GEII power
[toxcct][VisualCalc] -- modified at 10:37 Wednesday 2nd November, 2005I wouldn't recommend it for a C++ beginner though. It's more useful once you've had some experience with C++. Kevin
-
Hi All, Sorry to post such an open ended question, but does anyone have an opinion on the best way for an experienced developer to learn C++? I have worked with VB6(Don't tell me - a toy language! ;P) and C# for some time now and I would consider myself to be pretty competent with both of these and SQL. I have also done a considerable amount of Web Development using ASP/ASP.NET and Javascript. Recently I did some reading on C++ and decided I would like to learn this too, however I am unsure where to start. A lot of the articles I have found start at a very low level - understandably aimed at novice developers. Does anyone have any suggestions/links/books that they would recomend for someone in my position? Thanks. MCSD(VB6/SQL7) MCAD(C#/SQL2000) MCSD(C#/SQL2000)
This looks quite good. http://cplus.about.com/od/beginnerctutorial/l/blcplustut.htm[^] Kevin
-
I wouldn't recommend it for a C++ beginner though. It's more useful once you've had some experience with C++. Kevin
-
Hello, What you need to reed depends on what you want to do. If you want to write windows programs, you can study MFC or WIN32. I don't recommand WIN32 since MS is moving to another platform. When you want to learn how the standard library works, you should read 'The C++ programming language' by Bjarne Stroustrup. This book was already suggested. My suggestion is that you start to build small C++ programs in C++. Design them well first and read about each topic you come across. If you need some data structure for example, read about vectors, maps, lists, etc.. So for your first toy app, you almost read an entire bookm but you'll read less and less each time. I found that this is an easy way to learn a new language if you are an experianced developer. One more tip, learn about the C++ memory model very fast. Since it is not managed like C#, you can easy leak tons of memory. This was one of the biggest pitfalls for developers who step down to C++ from a managed language. Hope this helps. :-D Behind every great black man... ... is the police. - Conspiracy brother Blog[^]
-
This looks quite good. http://cplus.about.com/od/beginnerctutorial/l/blcplustut.htm[^] Kevin
-
I assume that you have basic understandings in the area of OOP. If so then I really recommend you this book : Teach Yourself C++ by Herb Schildt - 3rd Edition
"Success is the ability to go from one failure to another with no loss of enthusiasm." - W.Churchill
I remember reading one of his Turco C books back in the early 90s. That, coupled with Petzold's Windows book, did wonders for me.
"Take only what you need and leave the land as you found it." - Native American Proverb
-
I wouldn't recommend it for a C++ beginner though. It's more useful once you've had some experience with C++. Kevin
Odd that you would recommend learning C++ from someone other than its author.
"Take only what you need and leave the land as you found it." - Native American Proverb
-
2 things : -Mr Leather99 don't seem to be a beginner... he - himself - qualify as an experienced developer -I learnt C++ reading this book !!! i had no OO basics, few C ones...
TOXCCT >>> GEII power
[toxcct][VisualCalc]toxcct wrote:
Mr Leather99 don't seem to be a beginner.
He's a C++ beginner though. Even after having done C++ for quite some time I found Stroustrup's book heavy going. I also found it more useful as a reference rather than as a first book. I actually learnt C++ mainly from Bryan Flamig's (now very ancient and probably out-of-print) Turbo C++ Step by Step. I still occasionally refer to it though. Kevin
-
Odd that you would recommend learning C++ from someone other than its author.
"Take only what you need and leave the land as you found it." - Native American Proverb
Not at all. Because someone created a technology it doesn't follow that they are the best ones to explain its ideas. Kevin
-
Thanks for that Bob... Yes Memory allocation etc is something i have generally been able to avoid using VB and .NET. I will keep it in mind.
MCSD(VB6/SQL7) MCAD(C#/SQL2000) MCSD(C#/SQL2000)
A common error for C# or Java programmers moving to C++ is the tendency to use heap allocation (new) everywhere. But the general strategy for C++ is to 1. Use dynamic allocation only when its necessary. 2. Prefer using library data structures, e.g., std::vector, std::list, to rolling your own. 3. If you must use dynamic allocation, use a smart pointer class, e.g., auto_ptr or boost::shared_ptr Kevin