vote up 3 vote down star
1

Possible Duplicate:
What are the most useful high quality free C++ projects you really learned a lot from?

Codeplex is cool, except that I can't find any C++ projects, I was hoping to learn from them.

Is there anything such as codeplex but with C++ code as well?

flag

80% accept rate
5  
C++ questions are not programming related? It does make you think ... – mobrule Nov 4 at 15:33
That's an exact duplicate: stackoverflow.com/questions/1324222 – sbi Nov 4 at 16:23

closed as exact duplicate by jldupont, sbi, coppro, fbrereto, Greg Hewgill Nov 5 at 3:39

7 Answers

vote up 4 vote down

One project that I have personally learned some interesting techniques (message passing, queueing, using interface classes, using standard containers for almost everything) from is Synergy. Sourceforge is a good place to find opensource projects, some of which are C++.

By far the best place for me has been IRC, ##C++ on freenode. There are some very good C++ programmers in there (see litb, coppro on this site). Even if I don't have a specific question, I find trying to answer questions there (like here) and getting corrected a very effective learning technique.

link|flag
+1 for mentioning Synergy ..great tool as well source – singh Nov 4 at 15:59
+1 A good starting point, though good design comes with designing, talking to developers and doing. – Chad Nov 4 at 16:19
"I find trying to answer questions there (like here) and getting corrected a very effective learning technique." -- Let's hope you don't ruin some poor guy's learning though with a wrong answer :} – Pod Nov 4 at 21:21
Yes, well, though my help isn't ever (hyperbole) technically incorrect I get corrected on better methods. – joshperry Nov 4 at 21:46
vote up 4 vote down

Reading other people's code is one way of learning, but you also need to do some coding of your own, even if it is just in the privacy of your "/tmp" directory.

link|flag
vote up 0 vote down

Efnet has a great #C++ channel as well. My personal advice is to learn the syntax of many different object oriented languages and then study up on general OOP theory such as inheritance, interfaces, templates, and the list goes on. From there, you aren't restricting yourself to a single language (except for templates, that's C++ specific). The general techniques you learn can be applied to almost every single object oriented language. I found that reading someone elses code without understanding basic theory got me nowhere.

link|flag
vote up 0 vote down

Check ACE and BOOST.

EDIT: In resposne to comment. It is not really that difficult, although it may look scary at start. There are several good points however. First, there are very good books describing concepts, usage and design patterns used in these libraries. Second, there are always a lot of people whom to ask. Third, it is really top edge C++. And fouth, if you manage to learn it, it will come helpful in many future projects.

link|flag
3  
To learn from ? Oh my... given the complexity of handling multi-compiler support most of the libraries are a mess of compiler directives :/ – Matthieu M. Nov 4 at 16:06
I'm going to have to agree with the previous comment. Sure there is C++ code in there, but at least in ACE, the platform/compiler independence makes it messy at times. Maybe what you should learn from it is how tricky it is to be platform and compiler independent in C++. – Mattias Nilsson Nov 4 at 16:15
I second that. I wouldn't look at Boost to learn how to code, too much going on with the compiler support. However, Boost is an invaluable resource for understanding multi-compiler composition. – wheaties Nov 4 at 16:15
Voted down because I do not consider that Boost or ACE a good starting point to learn from. 1) They're very complex, 2) They require all-ready deep knowledge of type checking, the weirdness compiler spill out from template meta programming. Last, I dont want to read an armature's source code just because they designed a typeless program design that is a nightmare to maintain. – Chad Nov 4 at 16:17
Thank you for comments, guys. I agree this might not be a good start for a novice, however one will eventually come to these resources if he wants to improve his coding skills. – AlexKR Nov 4 at 16:37
vote up 1 vote down

code.google.com has some C++ projects also. I'm not sure how many but it's a place to look around at.

link|flag
1  
+1 for letting the person choose the project to start from. – Chad Nov 4 at 16:20
vote up 0 vote down

I wouldnt look at libraries to learn how to code C++. I would read a C++ tutorial that covers everything. I have always liked http://www.cplusplus.com/doc/tutorial/ which is pretty complete. If you really would like a challenge try implementing something that boost does. I tried creating a function that tells you if something is a pointer had another that told me if something is base of or derived of.

I highly recommend that tutorial. I dont remember if it mention class { operator AnotherClass(); } but thats the only thing i remember not being there. Be sure to read template specialization carefully

link|flag
vote up 0 vote down

You should definatly check Juce. I find it very well written, comprehensive, and it has all the basics (strings/array/multithreading) as well as more advanced stuff (rather complete GUI and Audio libs, go figure); It might not be as 'big' as ACE or Boost, but it's ten times more readable.

Another thing to keep in mind: stuff like Synergy might be good, but don't go focussing on just one or a couple of projects. You have to remember that people starting such a project take certain design decisions based on what works best for their case, and that is likely not always comparable to what your needs are. (simple example for the Synergy case: all platform specific stuff is in a singleton; works great, but suppose you write a lib that you want to use for multiple applications, you maybe do not want to change the singleton's public interface each time you add a platform-specific feature)

That being said, Stephen C makes a very good point. The most rewarding and valueable project is the one you do all by yourself.

link|flag

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