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.
|
2
|
|||||||||||||||
|
|
|
Google Chromium (C++): windows, tabs, plugins etc. are all classes. |
|||
|
|
|
|
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++. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Eclipse would be a good example on the Java side: the plugin architecture is all object oriented. |
|||
|
|
