vote up 2 vote down star
2

Please help me identify some small to medium sized open source projects that embody object oriented design (preferably in C++ or Java). I would like to use these projects to demonstrate how real world problems (as opposed to contrived text book examples) can be solved with an object oriented design. I want to be able to present a plausible explanation of why certain things were chosen to be objects and how they all work together to solve a problem.

flag
1  
This should be a wiki as it will be subjective – James Black Oct 26 at 1:25
it is now a community wiki, thanks for the tip – alfred Oct 26 at 1:29
1  
you are probably wasting your time: object-oriented concepts are best understood by doing, not by reading. If they didn't "get it" from the contrived textbook examples, they probably wont "get it" from more complex real-world examples, because neither of these are of interest to the audience. Show them the difference in their own code and they'll get it. – Steven A. Lowe Oct 26 at 1:32
1  
I don't know if it's necessarily a waste of time. It depends on how a particular person processes information. Personally, a lot of the coding habits/strategies I've developed were formed through reading other people's code. – Charles Salvia Oct 26 at 1:35

4 Answers

vote up 2 vote down

Google Chromium (C++): windows, tabs, plugins etc. are all classes.

link|flag
vote up 2 vote down

The Unreal Tournament Public Source Code (432 Headers) contains the declarations of the Unreal engine class library written in C++. I found it to be a rich example of a large object-oriented program. It taught me a lot about how to modularize and object-orient my code. It also demonstrates many tactics for getting a handle on a large code base.

Also, because all you can read are header files, you'll have a fun (and educational) time trying to figure out how the whole thing comes together. (I actually ended up writing my own x86 disassembler so I could cheat and read some of the definitions!)

On the same note, the Doom 3 SDK contains a large chunk of the Doom/Quake engine written in very readable C++.

link|flag
vote up 0 vote down

Just about any large project designed in Java is object-oriented, almost by definition. You can take a look at Apache Hadoop as a large-scale, open-source, objected oriented project written in Java. Another is Apache Ant.

link|flag
vote up 0 vote down

Eclipse would be a good example on the Java side: the plugin architecture is all object oriented.

link|flag

Your Answer

Get an OpenID
or

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