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

What C++ open-source projects have good and clean code? I would like to go through it and learn the design and implementation tricks used there.

There was a similar question about C code here, but I would be specifically interested in C++ projects, especially in ones that use modern programming approaches and have modular but not bloated overall structure and object-oriented design.

I know I could look at code in Project Euler or Topcoder, but I'd like to see the architecture and design of a whole nicely-sized, but not too large project (say, up to 50 or so classes).

There was also this question, but no one mentioned C++ projects.

And one more thing: I know the best way to learn is actually writing code yourself. But I'm already doing that. A lot.

share|improve this question

closed as off topic by Jeremy Banks, Bill the Lizard Mar 4 '12 at 5:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

8 Answers

up vote 7 down vote accepted

I've always admired the OpenSceneGraph for a really clean, modern approach to C++. It's a larger code base but very modular, so you don't need to chew off too much at a time :)

Not a lot of comments though, so be prepared to actually read some code.

share|improve this answer

I've learned from the code of Binutils Gold and i liked the clean style of the LLVM source-code.

You can also have a look into the boost code. It's probably not easy to understand because their writers know a lot of C++ and assume its readers know too. But of course its code is the lingua franca of C++.

share|improve this answer

Trolltech's Qt library has a great design.

Another good way is to learn good design is to read a book on design patterns, such as this one.

share|improve this answer
Correct, but in essence, Qt uses a lot of extra constructs and a more extensive build process to C++-ify these constructs. I'm thinking about their moc tool and signals/slots, or the QT_OBJECT and associated macros, that allow certain extended syntax to do what it needs done. This all works very nicely, but is not C++ as in Standard, and it doesn't look like it will ever be. Also, the Qt containers are significantly different from the STL containers, although they provide similar functionality. But not withholding all these contra's, Qt is indeed well-written and designed. – rubenvb Feb 5 '11 at 14:41

The Boost C++ libraries are very good examples of good modern C++ design.

share|improve this answer
3  
But rather abstract and full of platform-specific quirks and hence difficult to understand in many places. A more concrete example might be more helpful. – MarkR Feb 22 '09 at 19:44
@MarkR: That criticism doesn't make any sense. Not every library in Boost is implemented in a very abstract problem space, and many of the libraries are 100% portable and don't touch the underlying platform at all. – Ben Collins Feb 22 '09 at 22:13
I'd also suggest that you lurk on boost mailing list. There are a lot of good discussions on good and clean design/code. – obecalp Feb 22 '09 at 22:32
Please don't look at Boost first. Or if you do, stick to the non-metaprogramming parts like Filesystem or Thread. As a rule, the more generic code is, the less readable it is, and Boost is for the most part very generic. – j_random_hacker Feb 23 '09 at 11:34

A great example of a large system in C++ is Chrome. The C++ is fairly nice, and it's interesting to see how they tackled the challenge of organizing such a large system.

share|improve this answer
Ha, I didn't know it's open source! – Frank Mar 16 '09 at 22:34
I've had an (admittedly) brief look at the Chromium codebase, and have noticed a couple of things which are relevant to this discussion. Firstly it seems there is a lot of code passing around raw pointers. This is a bit of an anachronism, given the alternatives of smart pointer types (to automatically manage object lifetimes when required) or references (when object ownership is not required). The second point is that there is a bit of tendency to reinvent commonly-available facilities such as scoped_ptr, function, bind, etc. – Alastair Feb 27 '12 at 2:56

IMHO, DC++ (a client for the Direct Connect protocol) is quite well done, makes use of C++'s features in all the right ways and has a manageable size. I always liked poking around in its source.

share|improve this answer

I recommend looking at ACE for examples of good C++ code and design principles.

share|improve this answer

I would like to read some good C++ books instead of study these codes. I think for every project, they have different background, design and implementation, most of them didn't provide a good document.

share|improve this answer
2  
Books are fine for some things, but it's also useful to "look under the hood" of a real working project to see how it deals with the project organization and so on. Plus, the guy asked about that, not books. ;) – Nik Reiman Feb 22 '09 at 19:49

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