I'm an experienced Java/C# developer. I studied C/C++ in university but have never used them to build any non-trivial software. Now I'm interested in learning about C/C++ programming in Windows and looking for good books to get started.

Specifically, I want to learn about Win32 API, MFC, COM, event hook, screen capturing, multithreading, and networking. Good books that cover many of these topics, even at introductory level (sufficient to start coding in the respective topic & explore more later), are of more interest to me than books covering only one or two of those areas in depth.

What are good books which meet these criteria?

link|improve this question
This has been answered in multiple existing questions. Here is one: stackoverflow.com/questions/575127/… – EBGreen Sep 2 '09 at 14:27
Consider not learning MFC, and skip right to Qt. MFC is old, crappy and cumbersome. If you're into learning COM, it's since become known as ActiveX - more up-to-date books will be more useful. – Kieveli Sep 3 '09 at 12:57
MFC is dead apart from old projects - I cant say Qt is my choice - go to .NET and managaged C++ – user138512 Sep 15 '09 at 16:33
Thanks for the suggestion, @Kieveli & @mikej. Didn't know about Qt before, glad I'm aware of it now. – Buu Nguyen Sep 16 '09 at 15:44
feedback

closed as not constructive by casperOne Jan 6 at 20:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 8 down vote accepted

Programming Windows, The Definitive Guide to the Win32 API

by Charles Petzold is THE bible of Windows programming. Cited for the last umpteen years as the best book on learning to program Windows, it covers the Win32 API and how to program it using C in great detail. (Note: even if you use MFC for your programs, it is still helpful to know the underlying mechanisms on which MFC relies.)

Windows via C/C++

Without question, this book by Jeffrey Richter and Christopher Nasarre is probably the best book on Windows programming. the book deals with advanced issues like working with threads, proceses, heaps, memory-mapped objects, kernel objects, exception handling, thread synchronisation (mutexes, semaphores, critical sections, etc), and so on.

link|improve this answer
feedback

The book on WinAPI: Windows Programming by Charles Petzold BTW: It's all in plain C.

link|improve this answer
Here's also Petzold's link: charlespetzold.com/pw5/index.html – Kyle Walsh Sep 2 '09 at 14:28
I believe that is rather old... though it is a very good book – Ionut Anghelcovici Sep 2 '09 at 14:29
feedback

Why a book? The internet is full of just about everything you need to learn any programming language. There are arguably a few books that any programmer needs to own/purchase these days, but beyond that, I don't understand the tech book route at all -- unless you enjoy carting 100's of pounds of tree material around with you when you have to move.

link|improve this answer
@oldmanjoyce: I agree. I am also using that vast resources only. – Aviator Sep 3 '09 at 12:50
5  
@oldmanjoyce The internet is (usually) great for getting an answer to a specific question but is terrible in providing a structured way from getting from A to B. A well written tech book can take you from knowing nothing about a subject to knowing what questions you need to ask when you are trying to solve a problem. – Peter M Sep 3 '09 at 12:57
1  
@oldmanjoyce: my reason is here (buunguyen.net/blog/…) – Buu Nguyen Sep 16 '09 at 15:47
feedback

I'd suggest learning the Microsoft APIs by reading MSDN. The MSDN does a pretty good job of documenting the Windows APIs, and giving example code.

Also, I would read Effective C++: 55 Specific Ways to Improve Your Programs and Designs (3rd Edition). C++ is a complex language, and learning things like how to use auto ptr's will probably help you more than any specific Windows API book.

alt text

link|improve this answer
feedback

C++ and Windows are hardly a good choice any more as in the .NET world C++ is a bit of a second class language. If you want to see what modern C++/WIndows programming is all about have a look at a book like C++/CLI in Action . But to be honest unless you want to do some very system programming type things just use c#.

link|improve this answer
feedback

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