C ++ Design Patterns with Qt 4

I was looking for tutorials or books on design patterns in qt, and so far I have found one book, "Introduction to C ++ Design Patterns with Qt 4". Has anyone read this book ?. Also, where can I read about design patterns implemented in qt ?.

+4
source share
2 answers

An introduction to C ++ design patterns with Qt 4 uses Qt 4.1 to demonstrate its concepts. So much has changed since Qt 4.1 that I suggest that you first learn about design patterns and then learn Qt (separately). When you understand design patterns, you can view the Qt source code and recognize the patterns yourself.

Design Patterns - Elements of reusable object-oriented software - a great book on design patterns with examples in C ++.

+5
source

The beauty of design patterns is a solution to common programming problems, not just for a particular structure or language. QT uses them extensively, so it might seem like this little video information is interesting http://www.youtube.com/watch?v=kzgtqJoD1PE

+1
source

All Articles