vote up 6 vote down star
1

Duplicate: of this and this question. Even if the question isn't worded exactly the same, you're getting the exact same answers.

I've read several programming books. I can program in about 8 languages. I've noticed a problem with just about every book out there is that they are either:

  1. a reference book on the language structures
  2. a book of programming tips and tricks

what I have yet to find is a good book on how to develop real software. Maybe it's just me with having problems making the leap from programming structures to large projects with libraries, modules, and lots of files.

Are there any recommendations about how to write software? not just how to program in (C/C++/C#/Java/PERL/Ruby/...) language?

flag
It looks like it's code complete. I've tried to get it from the library but the wait list is too long. So I just bought it. From the look of the comments, this is one that I should have in my library anyway. – Halpo Feb 11 at 18:23

closed as exact duplicate by Bill the Lizard, Juan Manuel, George Stocker, Norman Ramsey Feb 12 at 3:38

16 Answers

vote up 10 vote down check

I highly recommend Code Complete

link|flag
Get the second edition if you have your choice. – Chris Ballance Feb 11 at 17:29
It covers a lot of ground, very well written with lots of interesting trivia. And most importantly with a lot of (reviewed) references for further study. Highly recommended – ejac Feb 11 at 17:54
vote up 6 vote down

You might also consider trying to build something of moderate to large size - there's no substitute for actually getting tangled up in architectural issues, and it can put books like these, and other things people have posted here, in better context.

Something else I found when I started to get bored with the "Language X in 21 days" books was more CS theory - not sure if it helped with large scale design but it was a great place to expand from basic programming. Two good ones are:

(these were especially interesting to me because I never studied CS, YMMV)

link|flag
I like ToC but have seen people go crazy studying automata, turing machines etc. +1 – Perpetualcoder Feb 11 at 17:40
vote up 5 vote down

The Pragmatic Programmer: From Journeyman to Master

link|flag
That is an excellent book. Entertaining to read too. – Bernard Feb 11 at 19:29
vote up 4 vote down

Here are Joel Spolsky's recommendations, including a discussion that might help you realise why you should (or shouldn't) read what's on the list: http://www.joelonsoftware.com/navLinks/fog0000000262.html

link|flag
vote up 3 vote down

You can always try out the great design patterns book by the "gang of four":

Design Patterns: Elements of Reusable Object-Oriented Software

link|flag
vote up 2 vote down

I am not sure I understand your question correctly, I assume you want to go beyond language and get into design and architecture of software.

I recommend you take a look at these - Gof, Patterns of Enterprise Architecture, Test Driven Development

These are the ones that come to my mind right now.

Happy Coding!

link|flag
Except for the last one I've read all of those. – Bernard Feb 11 at 19:28
I believe if your code is testable in a mutually exclusive way without too much mocking, your design is pretty good. – Perpetualcoder Feb 11 at 20:03
vote up 2 vote down

alt text

Introduction to Algorithms by Cormen et al.

link|flag
good book but some of the exercises are real tough. – Perpetualcoder Feb 11 at 20:01
vote up 2 vote down

Art of Computer Programming by Donald Knuth is considered a classic, though I'm not sure if it has enough Software Design information in it.

The Mythical Man Month is also a classic and has some excellent information(and still very relevant) on the software design process.

link|flag
vote up 1 vote down

Probably anything by Martin Fowler but more specifically:

Patterns of Enterprise Application Architecture

link|flag
vote up 1 vote down

Scott Hanselman's Six Essential Language Agnostic Programming Books is good stuff.

link|flag
vote up 1 vote down

And loads more, no doubt! That's just off a quick trawl of my Amazon wishlist.

link|flag
vote up 1 vote down

In reading the question, I wonder if you aren't really asking for books on designing software rather than just a language-neutral book about programming.

If that's the case, I'd recommend Domain-Driven Design.

Domain-Driven Design book cover

In my experience at least, while the actual coding part of projects could always use improvement the real difficulty starts much earlier. I really found this book helpful in learning how to design in the abstract before starting to think in terms of a concrete solution. You know, like we're all taught but we rarely do.

link|flag
+1. I've heard good things about this book, and the bit I've myself read (about modules aka packages) was somewhat eye-opening, and clearly written – Jonik Feb 18 at 15:07
vote up 0 vote down

I find reading various blogs to be more helpful than any one book, but Code Complete and Design Patterns are good choices. This list is pretty good.

link|flag
vote up 0 vote down

must read: Code complete

link|flag
vote up 0 vote down

What I have yet to find is a good book on how to develop real software. Maybe it's just me with having problems making the leap from programming structures to large projects with libraries, modules, and lots of files.

Many good books have been recommended, in this question and earlier ones... But when looking at the question, I cannot help but think that no book will take you beyond the basics.

Practising the profession, i.e., working on real-world projects , is the only thing that will. (Be it an open-source pursuit in your free time or a day job building software at a company.) While you are doing that, books will be of great help, but alone, or as the primary means, they will not make the leap for you.

link|flag
vote up 0 vote down

If you are a C++ programmer I recommend Scott Meyers wonderful Effective C++ book(s)

link|flag

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