Possible Duplicate:
Ultimate Guide and List of Books in C ++
I have been developing in C / C ++ for quite some time (mostly C, which makes the style worse). So, I know how to use it. However, quite often I stuck with stylish solutions, such as: - should I return an error code here, throw exceptions, return an error through a parameter - should I have all this in the constructor or should I create a separate init function for it. etc.
Any solutions will work. However, each of them has minuses and pluses that I know and, most importantly, that I do not know.
It would be very nice to read something regarding the general style of development in C ++, coding practices, etc. What do you recommend?
source
share