Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I bought it the other day, and just started to get into it. Should I have gone for the second edition? Or is the first edition still relevant?

share|improve this question
I bought 2, having the original. If you didn't get 1, you won't 'get' 2 any better. It is not radically different. A few updated and extra chapters. – Mitch Wheat Jun 29 '09 at 11:26
@Ether Don't know how it can be a duplicate when the original question was posted in 2008 and the one you linked is in 2009. – alex Nov 14 '10 at 23:34
1  
@Ether Can I ask "List of freely available programming books" and then close the existing one as a duplicate then? :P – alex Nov 15 '10 at 2:06
3  
If only there was a way to change the asked date to reflect the real age of the original question instead of just this post :) – BoltClock Nov 15 '10 at 3:23
show 2 more comments

closed as not constructive by Kev Aug 5 '12 at 14:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

13 Answers

up vote 16 down vote accepted

Code Complete 1 will be of value to you. You will not regret it. I also recommend Rapid Development and his book on Estimation. Very practical for a career in software development.

That said, Code Complete 2 has some things that will eventually be of interest to you:

  • Sections on Refactoring are added.
  • Performance suggestions now include data on .Net and Python.
  • Discussion on Design and Requirements.
share|improve this answer

You should buy it just out of appreciation all for Steve McConnell did for programming by writing that book.

Otherwise, they're very parallel. If you didn't "get" the first, the second edition won't help you. The examples updated to more modern languages does make things a little clearer, and some graphics are cleaned up. Terminology and practices are more up-to-date too, although he was pretty far ahead of the curve even then.

If you're starting to read it with fresh eyes, and have the budget for it, it's worth it. I gave my CCI away to someone else so I would have an excuse to get CC2. It's win-win. :)

See http://cc2e.com/Default.aspx?hid=337 for Steve's own comments on why he wrote CC2.

share|improve this answer
I think the reason I didn't get it when I first read it was simply; I was far too green to development. I think I was more concerned with getting something / anything to happen than worry about best practise. I think I'll buy it and see if I've learnt anything in nearly 10 years (I really hope so). – Rob White Jun 29 '09 at 12:19

Even though it's now 15 years old, most of the advice is fairly timeless and so still quite relevant. The chapters on software craftsmanship alone are worth the price of the book.

This was the prescribed text in my first year introductory software engineering subjects, and one of the few texts in which I found myself consistently reading and re-reading throughout the course.

share|improve this answer

Yep, version one is just fine. Read it at least once a year to help clear your head.

share|improve this answer

You can still apply the principles from the first version to languages and technologies that are on or close to the bleeding edge.

The new version looks at a more modern set of languages and and concerns -- so the emphasis is more OO and C# than procedural and Pascal. The old advice is still as pertinent as ever; the revised edition just makes that clear by restating it for a more contemporary environment.

share|improve this answer

I still have the original Code Complete from Microsoft Press on my book shelf. I think it was one of the best resources for non-language specific practices that will always be useful. I haven't actually seen the later editions, but the information and disciplines explained in that book have been invaluable to me.

Edit: as an additional note, It sits right beside "Writing Solid Code" and "Writing Secure Code" which are also a fairly good books to keep you from straying too far off the path into evil coding. (which I still do on occassion, anyway :( )

share|improve this answer

I prefer it to the second edition. Code Complete 2 is very big on "big design up front" as the answer to all problems.

share|improve this answer
How do you make that? It seems to emphasize a 'best tool for the job' approach to me. – Adam Luchjenbroers Dec 2 '09 at 7:34
That was just my reading, I don't know if it was what he intended or just the type of projects he works on. CC1 seemed much more a set of small scale hints and tips – Martin Beckett Dec 2 '09 at 16:15

I have read both. I felt that the new version had not been updated as much as I had hoped. They are good books, make you reflect on how you do things.

I would buy the new book. The cost of the book is cheap compared with the value of the time you spend to read it.

share|improve this answer

I think that you should get version 2 - it has a lot more stuff on modern OO principles such as SOLID programming (although I don't think it is actually referred to as SOLID in the book).

share|improve this answer

If you have CC1 you might want to consider electronic access to CC2 to get the updates and also gain access to it on your computer(s), providing you are content to read on-screen. As well as being accessible on the Safari Books Service it is also currently on the Safari subset that ACM Professional Members so you get access to a selection of IT books for the annual subscription charge.

In practice I have the paper copy and electronic access -- it allows me to lend the paper copy to people who might benefit from it and gives them the opportunity to evealuate it before buying their own copy and recommending it to others.

share|improve this answer

I prefer the first edition. The most important ideas were already in the first edition. Some of the additional material in the second edition isn't as important.

Code Complete holds up well with age because it isn't about the aspects of programming that change every year.

share|improve this answer

It's still a fantastic book. You have not wasted your money. Even if CC2e hadn't come out, it would have been a classic.

share|improve this answer

Absolutely. It's one of the most important books you will ever read. :-)

Just bought the version 2 myself.

share|improve this answer

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