User Robert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:17:08Zhttp://stackoverflow.com/feeds/user/14364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75538/hidden-features-of-c/78436#7843620Answer by Robert for Hidden Features of C++?Robert2008-09-16T23:48:52Z2008-09-17T00:06:56Z<p>Oooh, I can come up with a list of pet hates instead:</p>
<ul>
<li>Destructors need to be virtual if you intend use polymorphically</li>
<li>Sometimes members are initialized by default, sometimes they aren't</li>
<li>Local clases can't be used as template parameters (makes them less useful)</li>
<li>exception specifiers: look useful, but aren't</li>
<li>function overloads hide base class functions with different signatures.</li>
<li>no useful standardisation on internationalisation (portable standard wide charset, anyone? We'll have to wait until C++0x)</li>
</ul>
<p>On the plus side</p>
<ul>
<li>hidden feature: function try blocks. Unfortunately I haven't found a use for it. Yes I know why they added it, but you have to rethrow in a constructor which makes it pointless.</li>
<li>It's worth looking carefully at the STL guarantees about iterator validity after container modification, which can let you make some slightly nicer loops.</li>
<li>Boost - it's hardly a secret but it's worth using.</li>
<li>Return value optimisation (not obvious, but it's specifically allowed by the standard)</li>
<li>Functors aka function objects aka operator(). This is used extensively by the STL. not really a secret, but is a nifty side effect of operator overloading and templates.</li>
</ul>
http://stackoverflow.com/questions/74405/what-is-the-best-c-book-for-an-intermediate-to-expert-developer/78394#783940Answer by Robert for What is the best C++ book for an intermediate to expert developer?Robert2008-09-16T23:38:35Z2008-09-16T23:38:35Z<p>I would say there are a lot of good ones published by Addison Wesley which have been mentioned above.</p>
<p>I would add, if you are a reasonably experienced programmer in other languages and have some C, but new to C++ then
Stephen C Dewhurst: C++ Common Knowledge is very good - it's a slim volume covering some of the "C++ dark corners", but tells you a lot without any waffle. Plus it's an entertaining read.</p>
http://stackoverflow.com/questions/77127/when-to-throw-an-exception/78337#783373Answer by Robert for When to throw an exceptionRobert2008-09-16T23:28:50Z2008-09-16T23:28:50Z<p>I would say there are no hard and fast rules on when to use exceptions. However there are good reasons for using or not using them:</p>
<p>Reasons to use exceptions:</p>
<ul>
<li>The code flow for the common case is clearer</li>
<li>Can return complex error information as an object (although this can also be achieved using error "out" parameter passed by reference)</li>
<li>Languages generally provide some facility for managing tidy cleanup in the event of the exception (try/finally in Java, using in C#, RAII in C++)</li>
<li>In the event no exception is thrown, execution can <em>sometimes</em> be faster than checking return codes</li>
<li>In Java, checked exceptions must be declared or caught (although this can be a reason against)</li>
</ul>
<p>Reasons not to use exceptions:</p>
<ul>
<li>Sometimes it's overkill if the error handling is simple</li>
<li>If exceptions are not documented or declared, they may be uncaught by calling code, which may be worse than if the the calling code just ignored a return code (application exit vs silent failure - which is worse may depend on the scenario)</li>
<li>In C++, code that uses exceptions must be exception safe (even if you don't throw or catch them, but call a throwing function indirectly)</li>
<li>In C++, it is hard to tell when a function might throw, therefore you must be paranoid about exception safety if you use them</li>
<li>Throwing and catching exceptions is generally significantly more expensive compared to checking a return flag</li>
</ul>
<p>In general, I would be more inclined to use exceptions in Java than in C++ or C#, because I am of the opinion that an exception, declared or not, is fundamentally part of the formal interface of a function, since changing your exception guarantee may break calling code. The biggest advantage of using them in Java IMO, is that you know that your caller MUST handle the exception, and this improves the chance of correct behaviour.</p>
<p>Because of this, in any language, I would always derive all exceptions in a layer of code or API from a common class, so that calling code can always guarantee to catch all exceptions. Also I would consider it bad to throw exception classes that are implementation-specific, when writing an API or library (i.e. wrap exceptions from lower layers so that the exception that your caller receives is understandable in the context of your interface).</p>
<p>Note that Java makes the distinction between general and Runtime exceptions in that the latter need not be declared. I would only use Runtime exception classes when you know that the error is a result of a bug in the program.</p>