You are here |
www.bfilipek.com | ||
| | | |
www.cppstories.com
|
|
| | | | Mister C was a cool guy. C could make amazing things with just ordinary text files. He used to grab bunch of them and produce magic binary forms. He could make aspinningcube, web server, or even an operating system. One time he was running through a plain header file. | |
| | | |
www.hanselman.com
|
|
| | | | If you've got a programming blog, chances are you'll want to post some code ... | |
| | | |
www.cppstories.com
|
|
| | | | Lots of practical examples, general programming, software development techniques, OOP, parallel algorithms, plus C++ to combine it all into working applications. This is a short introduction to the book "Introduction to Programming with C++" by Prof. Boguslaw Cyganek, an excellent book for students who start their journey with system coding. | |
| | | |
www.bfilipek.com
|
|
| | Some time ago I covered how to use custom deleters with smart pointers. The basic idea is to specify a dedicated method that will be called when a pointer is released. One logical application of custom deleters might be resource handles like files or the WinApi HANDLE type. Lets see how can we implement such thing. |