Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  C++: learning from experience programming Blog  > 

C++: Learning From Experience Blog


arsenmk.blogspot.com
I share everything that might be interesting for other people, the only requirement is to be C++-related.
2016-01-07 19:04
Recently I was having a tough time trying to add support for long paths to some piece of software running on Windows OS. If you did some work with file I/O on Windows you would definitely kn… Read More
2013-09-29 05:30
    Hi there, this time I want to share some thought about how one can provide undo/redo support in his application. First of all, let's try to figure out what undo or redo means f… Read More
2013-03-04 20:07
Yesterday I tried to implement the quick sort algorithm in C++. I think everyone knows the algorithm, and it seems very easy-to-do stuff, but it took me about 1.5 hours to complete and polis… Read More
2013-02-13 10:43
I wanted to share a piece of knowledge on virtual functions in C++, then I thought it might be useful to make a little introduction to virtual functions, then only come back to the main topi… Read More
2013-02-09 20:39
   Virtual function is the most common way to support one of the three concepts of object-oriented programming, namely, polymorphism. So what is polymorphism? Wikipedia says the fo… Read More
2012-09-26 20:46
    One good feature of C++ compilers is automatic implicit type deduction for template functions, i.e. retrieving template argument types from the passed formal parameters.templat… Read More
2012-08-10 18:12
Hi all, today I am going to write about a renowned topic, namely, exception handling. Exception is a mean for indication of a deviation from the normal execution flow of the program, though… Read More
2012-07-18 19:23
Hi dear reader! As my PhD defense day had passed, I have a lot more time than some weeks ago, so I will be posting more often. Maybe not all the posts will be much interesting, or interestin… Read More
2012-03-23 11:12
C++03 and older versions allow one to change the prototype (declaration) of a virtual function in a derived class, thus, introducing a new function instead of overriding that in the base cla… Read More
2012-03-19 12:43
Sometimes we need some specific classes, which are better not used in other contexts but this very which we are trying to implement, so we need to make this class non-inheritable, i.e. no cl… Read More
2012-02-20 16:50
    Recently I had a problem with some smart pointers and containers and needed to test something. Namely, some smart pointers to objects were kept in an STL container and there we… Read More

Share the post

C++: learning from experience

×

Subscribe to C++: Learning From Experience

Get updates delivered right to your inbox!

Thank you for your subscription

×