What should I read to improve my C++ style
- by Victor Ronin
I was developing for quite long time already on C/C++ (mostly C, which makes style poorer). So, I know how to use it. However, quite often I stuck with style decisions like:
- should I return error code here, throw exceptions, return error through a parameter
- should I have all this stuff in constructor or should I create separate init function…