vote up 8 vote down star
3

I've been reading about C++ and working with classes and pointers, but now I need to know where to go from here (if it's GUI then it's gonna have to be Qt because it seems the best).

flag

16 Answers

vote up 12 vote down check

Read Code Complete

link|flag
Where can I find this book? Is there a free e-version? I've read alot about this author on a blog. – Lucas McCoy Jan 30 at 3:45
amazon.com has it, and barnes and noble may have it, if not they can order it for you like they did for me. – Jason Miesionczek Jan 30 at 15:25
I got it from a friend and have read the first 6 chapters, it's really changed the way I looked at programming. Thanks a million! – Lucas McCoy Jan 31 at 3:17
I about half way through it myself, and right now i want to rewrite every project i have worked on to incorporate all the wisdom that book contains. – Jason Miesionczek Jan 31 at 12:57
Get a hard copy mate, it's worth it. It's one of those books that make up a good library. – baash05 Nov 22 at 23:17
vote up 2 vote down

Read and work through this book. Then force yourself to start using the STL.
alt text

Read and work through this book. Then force yourself to start using BOOST.
alt text

Read these books too.
alt text alt text

That's a start. Ask other C++ programmers which books they got the most out of. You'll probably hear about Exceptional C++, More Exceptional C++, Modern C++ Design, et al.

link|flag
vote up 2 vote down
  1. Read "The C++ Programming Language" by Bjarne Stroustrup.
  2. Look at Boost Libraries.
  3. Start with small projects using Boost libraries.
link|flag
vote up 2 vote down

Learn much, much practice, know more than one language. Remember, you learn a language in 24 hours, but learn how to program, it takes time.
Read this also:
Teach Yourself Programming in Ten Years

Some tips 8 ways to be a better programmer in 6 minutes.

link|flag
I read that article a while back and loved it! – Lucas McCoy Jan 31 at 3:16
vote up 1 vote down

Minimize use of 'set/get' functions. Remember that in C++ (or any other OO language), writing a 'set/get' function for a member variable is an indirect violation of 'encapsulation'.

In my experience, my coding and design imporved when I started to question the need of set/get functions in classes. Obviously you cannot eliminate all set/get functions. But questioning the need of a particular set/get, exposed lot of unneccessary code and improved the encapsulation and eliminating such set/gets resulted in flexible code.

link|flag
vote up 1 vote down

If you do aim to do any GUI programming, I suggest gtkmm if you really want a good C++ API. It more depends on what platform you're aiming to develop on: if KDE, you want Qt; if any other GTK WM/DE, gtkmm of course; if Windows, any of the above (I know there's a GTK port, so I assume there's a gtkmm port).

link|flag
vote up 0 vote down

If you want to become a better C++ programmer write a lot of contrived examples and learn the limitations of the language, particularly when it comes to multiple and circular inheritance (yes' it's possible to really mess yourself up and the compiler sometimes doesn't even warn you). Example: assume the following code sample is in a .cpp file. Will it a. compile? b. run? Why?

class Foo {
  public:
    Foo(int i) : m_i(i) {};

  private:
    static int m_i;
};

int main(int argc, char** argv) {
  Foo myFoo(0);
  return 0;
}

If you want to learn Qt think of it like a whole other language. The Trolls were goodly enough to abstract and reimplement everything you could possibly think of. They've got strings, data structures, network code, data storage, compression, etc. Everything in Qt is all wrapped tightly in Qt.

Qt is also event driven - so get used to the idea of asynchronous event driven programs. No more busy waits or selects. Ask for data from a network socket and the call returns straight away. You'll can go off and keep crunching and will be alerted when data is available. A lot of the time you'll write an event handler in a derived class but you'll never call it directly - the Trolls were goodly enough to call it for you. If you've come from a GUI background you should be familiar there; most GUI toolkits are event driven even if they use raw callbacks in C. Qt just extends it to everything.

If you want to become gold at C++ programming, get familiar with the STL and Boost. Everything you want to do data structure-wise is in those two. Data storage, reordering, computations, etc are all covered.

link|flag
No because you cannot initialize static data via a constructor, it must be initialized at the declaration. Thanks, that was a real brain teaser! :-) – Lucas McCoy Jan 31 at 3:00
Not quite what I was thinking - my example has allocated no space for the variable and will fail in linking on that ground even if I didn't use the initialiser in the constructor. – Adam Hawes Feb 1 at 4:27
vote up 1 vote down

It really depends on what you want to do. Here are some things that can be learned in any order: writing your own templates, design pattern concepts, exception handling, OpenGL.

Actually it sounds like you need a project to apply some coding to. You can try Open source projects. I don't know if school is a possibility but many computer science courses would involve C++ assignments and group projects. So you can could get programming experience, some computer science concept work and school credit.

link|flag
vote up 1 vote down

The more you code the better you will get. Code for fun and for money.

Start solving problems with C++ (or any other language) to learn more about what can be done with the language and what libraries is available to help with the heavy lifting. Solving problems you haven't dealt with before increases your skill. Churning out the same old code everyday will decrease your ability to use a language to its fullest potential.

Something like problems Project Euler or International Olympiad in Informatics (See websites at bottom of page) can help you practice.

Also read some books on design patterns to learn how to recognize and solve common problems that occur regularly in software. Try and find the patterns in your previous solutions to problems when you re encounter a similar problem. A good pattern book is Head First Design Patterns

link|flag
vote up 1 vote down

Apart from some other good advices, my take on this is, try learning a functional programming such as F# or Haskell, once you have fall in love with one, you will come to be a better C++ programmer. You will start to incorporate some of the styles in C++ (And no, you won't abandon C++). You will start writing C++ codes that can be easily multi-threaded with minimal locking/synchronization, because you will learn to avoid global variables and to write functions that are side-effect free (as much as possible). You will write C++ codes that are less buggy because you will prefer the use of immutable variables.

link|flag
vote up 18 vote down

Here's a few generic suggestions:

  • Work closely with a more experienced C++ developer.
  • Read some of the wacky books about template metaprogramming in C++.
  • Write a lot of C++ code, either for work or for fun.

Really though, this is a super-generic question. I have no idea what you want to do with programming in general, but presumably you're learning it for something. Get some sort of hobby project and run with it in C++. Translate an old project into C++. Write your own spam filter. Whatever you do, do something.

link|flag
1  
Great advice, I'm really interested in football and will probably translate my QB Rating Calculator (C#) into C++. Thanks! – Lucas McCoy Jan 30 at 4:16
vote up 10 vote down

Effective C++, and/or More Effective C++ would make you aware of many pitfalls.

link|flag
vote up 15 vote down

Pick a significant open source project which has enough participants that your contributions will get reviewed. It should be one that is internationally recognised, use modern techniques like templates, formal bug tracking and a build system (adding to your education in that area).

Fix bugs. You will learn more about the language by fixing bugs within the context of a large body of work than you will studying in the abstract.

I suggest you strongly consider Boost: There are many ways to become part of the Boost developer community, all starting with getting involved in the development discussion. But if you are looking for an "easy" place to get your feet wet is to voluteer testing resources.

link|flag
vote up 8 vote down

Experience.

That's really the best teacher-- until you've experienced a need for a particular aspect of the language, you won't know what it's for.

For instance, templates. I never understood what templates were for, or why I would ever need them, or why someone would bother. To top it off, the visual studio 6 compiler handled templates really badly, so templating seemed like a good way to make life really difficult for myself.

Then I ran into a number of different image types. Grayscale images with 8, 12, 16 bit depths, color images with RGB or HSV encoding, float-based images, etc etc. And I was writing a lot of code to handle each one. Then I realized what templates were for, and my code got a lot cleaner.

There's no real way to predict what you're going to need to be 'better', it's more about solving problems. And you don't know what problems to solve until you try to do them, and realize the skill you need to fix the problem.

link|flag
vote up 5 vote down

Find some example code for a bare-bones Hello World application using the UI framework you want to use (QT). Learning how to code in a graphical/windows UI is often as hard as learning the language itself.

link|flag
I remember trying to move from making games in DOS mode13h to Windows 3.11. I was keen to work in Windows, but I went straight back to DOS quaking in fear at the doom I saw in the Windows API. – geofftnz Jan 30 at 2:00
vote up 25 vote down

Start a personal project that requires the use of all the things that you have learned. You will soon learn where you need to improve.

link|flag

Your Answer

Get an OpenID
or

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