vote up 10 vote down star
9

Hi all,

I have been learning C++ for three months now and in that time created a number of applications for my company. I consider myself fairly comfortable with C++ / MFC and STL, however I don't just want to be an OK programmer, I want to be a good programmer. I have a few books on best practices but I was wondering if anyone could suggest reading materials that helped them and any disciplines which should be encouraged?

Thanks!

flag

There are some great suggestions here: stackoverflow.com/questions/305691/… – Dan Nov 28 '08 at 17:43

19 Answers

vote up 14 vote down check

For C++, Scott Meyers books are very good, and will help take you to the next level.

If you don't already have it C++ by Bjarne Stroustrup, 3rd Edition

link|flag
+1 for Scott Meyers books. Should be required reading for all C++ programmers. – jmucchiello Dec 23 '08 at 17:32
vote up 15 vote down

I would start with the Pragmatic Programmer, Code Complete, Refactoring and Design Patterns.

link|flag
They're all good general non-specific language books. I though the OP was looking for C++ resources? – Mitch Wheat Nov 28 '08 at 15:13
The op specifically said, "suggest reading materials that helped them" – GregD Nov 28 '08 at 15:14
..and had C++ and MFC in the tags... – Mitch Wheat Nov 28 '08 at 15:16
I'm with @Che on this one. These books will provide excellent guidance. – tvanfosson Nov 28 '08 at 15:21
I didn't say they wouldn't. – Mitch Wheat Nov 28 '08 at 15:22
show 2 more comments
vote up 4 vote down

3 months into c++ and you're already comfortable with it? Sheesh, I've been learning c# for over a year and have taken numerous Microsoft courses and I'm nowhere near comfortable with it.

That being said, you'll hear Code Complete tossed about as a very good book. I'm in the process of reading it now.

link|flag
Code Complete is a great book, no question. But it won't teach you the nuances of C++ – Mitch Wheat Nov 28 '08 at 15:17
Being a better programmer is much more than learning the nuances of a particular language. – tvanfosson Nov 28 '08 at 15:22
i'd say that taking courses is against being comfortable with anything as creative as programming. at best, they can be good to learn the basics, and to know people. – Javier Nov 28 '08 at 16:04
Definitely Code Complete. The book should be turned into a compulsory course in any programming curriculum. A terrific read that opens your eyes to real world programming as part of development teams. – urig Nov 28 '08 at 17:07
vote up 4 vote down
link|flag
vote up 1 vote down

Good blogs: Guru of the Week, and all the books by Herb Sutter. Those will give you quite a lot to chew already.

Modern C++ Design by Alexandrescu if you want to get a good feel for what you don't yet know, and probably don't want to know.

Code Kata's for practice!

link|flag
vote up 7 vote down

Uhm... Teach Yourself Programming in Ten Years (Peter Norvig)

link|flag
vote up 3 vote down

Large Scale C++ Software Design by John Lakos gives guidance on design methods that will make your C++ more maintainable. It is pretty hefty but you can dip in and still get some benefits.

link|flag
vote up 0 vote down

I have read several (not complete but some parts) of oreilly books on VB.net they are quite good, but if you want to be pro and have the time... You can try out MSDN forums, help other people and discuss with them hard and complex problems, I think it's the best way..

link|flag
vote up 0 vote down

learn another language. even if you won't use it, it's great for mind-opening.

I'd advice Lua, Scheme and Python. but almost anything else would do. (the most different from C, the best)

link|flag
vote up 1 vote down

Somewhat off-topic: rather than suggesting books to learn, I'd like to mention some broad topics to consider.

  • Threading. This one is not much in demand if you use MFC, but in many other areas it's indispensable. The mechanics of threading APIs are easy to pick up, but learning all the corner cases takes a lot of time and practice.

  • Closures, Map-Reduce and other lisp-like techniques. Find out what they are, why they are not supported in C++, and how they are imitated in C++ (functors, and many other cases of stateful callback objects). For this I actually have a book: "Structure and Interpretation of Computer Programs".

  • Command Line. This gives you an idea on when not to code your own programs. Command line would be Unix command line - I don't know about MS's latest experimentation in this are, but cmd.exe is awful. Get Cygwin and start experimenting.

  • Scripting languages. This gives you an idea on when not program in C++. My favorite is Perl, but many people say Python, Ruby and whatnot. Hey, learn XSLT if you're so inclined!

I am sure I left out other areas. I'll mark this as Community Wiki - feel free to add.

link|flag
vote up 1 vote down

Josuttis and Vandevoorde - Templates: The Complete Guide

link|flag
vote up 1 vote down

As I see, nobody mentioned Bruce Eckel brilliant books "Thinking in C++". IMHO, it`s one of the best books to start your C++ development from. From my point of view, first volume is more helpful that the second, but both of them worth reading.
http://www.amazon.com/Thinking-C-Introduction-Standard-One/dp/0139798099/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1227890306&sr=8-1

link|flag
Ah! We have a copy of this in the office, will take it home over the weekend and give it a read. +1. – Whyamistilltyping Nov 28 '08 at 16:54
vote up 1 vote down

I lot of folks can suggest more modern, up-to-date books. But I still recommend The Annotated C++ Reference Manual by Margaret A. Ellis & Bjarne Stroustrup.

The ARM was published back in '90. It's become somewhat outdated with respect to templates. STL is (obviously) absent. (Though the website at sgi.com does a good job of covering STL!)

However, the ARM is dirt cheap (used). (Shipping will exceed the cost of the book.) Its signal-to-noise ratio remains off the scale. It's very good at digging into C++'s dirty areas, explaining what was done & why.

I still use it as a reference. I rank it up there with K&R.

link|flag
vote up 1 vote down

Dietel/Dietel "How to program C++"... I still have this book on my desk (10 years in).. Every once and a while I re-read a chapter.
I'd definatly get the Code Complete, as other have suggested. Infact read that first.

link|flag
I'm reading this book right now! Definitely a good book to learn from - however, if he's truly comfortable with C++ already it may not be detailed enough for him. – Sean Jan 21 at 14:20
vote up 1 vote down

To get a better understanding of object orientation, spend some time in a Smalltalk. Squeak is a free download. Then read Richard P. Gabriel's Patterns of Software and thereafter his Objects have Failed.

link|flag
vote up 1 vote down

Thinking in C++ - Bruce Eckel Symfonia C++ Standard - Jerzy Grębosz

link|flag
vote up 1 vote down

If you do nothing else, program.

When you are not doing that read about programming and when something strikes you as interesting, go implement something with that knowledge. I've found that this is the only way to really set the principals.

Staying up to date on blogs can be fun, but it is scattered knowledge. It seems to distract more than help. But combined with google and a desire to research something specific can really cough up tons of information. But dont' just subscribe to alot of rss feeds and expect to get better.

I think really studying specific topics helps expand your ability. Research topics that intrigue you, meet people doing things like you (conferences, user groups, irc, facebook, stackoverflow, etc) and above all practice your art.

link|flag
vote up 1 vote down

Try out to learn something completely new. Math and philosophy serve well. It lets you to think even more abstractly and flexibly. Abstraction and flexibility in thinking, ability to jump through many complex objects easily, are actually the only things that matter in programming.

link|flag
vote up 0 vote down

You can check out the Boost library and a number of the books written about it. While this may not have been what you had in mind, IMO, the Boost libraries are examples of well-designed modern C++ libraries that use the features of the language in pretty much the way they should be used to create among the most effective solutions for their problem domain. Granted of course, there are bizarre libraries like preprocessor and MPL which make you wonder if you'll ever have any use for them, but they're all round quite good. From my own experience, exploring the library and its literature has given me insight into how C++ can be used effectively.

Boost Beyond the C++ Standard Library: An Introduction to Boost

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.