Design Patterns in C++ with Qt 4
I have been looking for tutorials or books about design patterns in qt and so far i have found one book, "Introduction to Design Patterns in C++ with Qt 4".Has anyone read th开发者_如何转开发is book?.Also,where can i read about design patterns implemented in qt?.
Introduction to Design Patterns in C++ with Qt 4 uses Qt 4.1 to demonstrate its concepts. So much has changed since Qt 4.1 that I suggest first learning about design patterns, and then learning Qt (separately). Once you understand design patterns, you can browse the Qt source code and be able to recognize the patterns yourself.
Design patterns - Elements of reusable object oriented software is a great book on design patterns with examples in C++.
The beauty of design patterns is they solve common problems in programming not just a particular framework or language. QT uses them extensively so might find this little video introduction interesting http://www.youtube.com/watch?v=kzgtqJoD1PE
精彩评论