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).
|
3
|
|
|
|
|
|
Read Code Complete |
||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Effective C++, and/or More Effective C++ would make you aware of many pitfalls. |
||
|
|
|
|
Here's a few generic suggestions:
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
||
|
|
|
|
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?
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. |
||||
|
|
|
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). |
||
|
|
|
|
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. |
||
|
|
|
|
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 and work through this book. Then force yourself to start using the STL. Read and work through this book. Then force yourself to start using BOOST. Read these books too. 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. |
|||
|
|



