tags:

views:

451

answers:

7

Hi, everyone. Where I can find some good example application written in C++?

I want to read some code in my spare time, how can I get started?

+1  A: 

what about http://www.java2s.com/Code/Cpp/CatalogCpp.htm

Gambrinus
Actually ,I need some good applications written in C++ rather than libraries such as Boost,ACE and C++ STL.
MainID
Then I'd go for open source tools written in c++ like Wacek (below) pointed out. But be aware that not everything is "well-written" ;)As far as I know you could also look up books that are about c++ and have examples - mostly you can download these examples from the author's or publisher's webpage
Gambrinus
+6  A: 

Webkit is an extremely well-written source code in my opinion. More typical for C++, the Boost libraries are counted among the best C++ code ever written.

Konrad Rudolph
+1  A: 

You could look for some c++ library. Check sourceforge.net, Boost or whatever.

My suggestions: TinyXML, SOCI

Wacek
+6  A: 

Hi,

Stellarium, its C++, open source and available for most popular OS (Linux, Windows, etc)

great app, and cool source, easy to learn from.

(Bjarne Stroustrup) :) made a list of C++ applications you can learn from.

[Edit] Celestia is also a nice app

(has issues with my Japanese Vista, but its still a great app)

Ric

Ric Tokyo
I'd never heard of it until I checked out your link. It looks like its one of those Apps that I never realised I needed until I saw it!
Peter M
good links (plus I have to find one good answer from you to upvote ;) 4 down, 11 to go: http://stackoverflow.com/questions/359727#486543 ).
VonC
+1  A: 

You can search SourceForge.net for languages and topics you're interested in. For example, this page is the search results for "C++ games".

If you're feeling really ambitious, mozilla is written in C++.

Bill the Lizard
+2  A: 

Scintilla is a manageable size. It builds a dll that can be used to create full featured text editors.

Nick
A: 

You might have a look at OpenTTD, an opendource clone of Transport Tycoon. Its code quality is great and it also has a nice community.

CommanderZ