Hidden Features of C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T22:16:15Z http://stackoverflow.com/feeds/question/75538 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75538/hidden-features-of-c 49 Hidden Features of C++? Craig H 2008-09-16T18:37:05Z 2009-11-20T17:01:16Z <p>No C++ love when it comes to the "hidden features of" line of questions? Figured I would throw it out there. What are some of the hidden features of C++?</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75569#75569 -6 Answer by Markowitch for Hidden Features of C++? Markowitch 2008-09-16T18:39:47Z 2008-09-16T18:39:47Z <p>C++ is a standard, there shouldn't be any hidden features...</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75581#75581 3 Answer by dbrien for Hidden Features of C++? dbrien 2008-09-16T18:41:32Z 2008-09-16T18:41:32Z <p>I'm not sure about hidden, but there are some <a href="http://en.wikipedia.org/wiki/Duff%27s_device" rel="nofollow">interesting</a> <a href="http://en.wikipedia.org/wiki/Template_metaprogramming" rel="nofollow">'tricks'</a> that probably aren't obvious from just reading the spec.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75627#75627 35 Answer by Konrad Rudolph for Hidden Features of C++? Konrad Rudolph 2008-09-16T18:46:07Z 2008-09-16T18:46:07Z <blockquote> <p>C++ is a standard, there shouldn't be any hidden features...</p> </blockquote> <p>C++ is a multi-paradigm language, you can bet your last money on there being hidden features. One example out of many: <a href="http://en.wikipedia.org/wiki/Template_metaprogramming" rel="nofollow">template metaprogramming</a>. Nobody in the standards committee intended there to be a Turing-complete sublanguage that gets executed at compile-time.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75709#75709 8 Answer by Drealmer for Hidden Features of C++? Drealmer 2008-09-16T18:57:34Z 2009-09-09T23:46:03Z <p>I found this blog to be an amazing resource about the arcanes of C++ : <a href="http://cpptruths.blogspot.com/" rel="nofollow">C++ Truths</a>.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75818#75818 4 Answer by sergdev for Hidden Features of C++? sergdev 2008-09-16T19:07:49Z 2008-09-16T19:07:49Z <p>There is no hidden features, but the language C++ is very powerful and frequently even developers of standard couldn't imagine what C++ can be used for. </p> <p>Actually from simple enough language construction you can write something very powerful. A lot of such things are available at www.boost.org as an examples (and <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/lambda.html" rel="nofollow">http://www.boost.org/doc/libs/1_36_0/doc/html/lambda.html</a> among them).</p> <p>To understand the way how simple language constuction can be combined to something powerful it is good to read <a href="http://rads.stackoverflow.com/amzn/click/0201734842" rel="nofollow">"C++ Templates: The Complete Guide" by David Vandevoorde, Nicolai M. Josuttis</a> and really magic book <a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">"Modern C++ Design ... " by Andrei Alexandrescu</a>.</p> <p>And finally, it is difficult to learn C++, you should try to fill it ;)</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75849#75849 4 Answer by ugasoft for Hidden Features of C++? ugasoft 2008-09-16T19:10:07Z 2009-09-09T23:46:53Z <p>There are a lot of "undefined behavior". You can learn how to avoid them reading good books and reading the standards.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75917#75917 1 Answer by Amir for Hidden Features of C++? Amir 2008-09-16T19:18:21Z 2008-09-16T19:18:21Z <p>There are tons of "tricky" constructs in C++. They go from "simple" implementions of <a href="http://www.gamedev.net/reference/programming/features/cppseal/" rel="nofollow">sealed/final classes</a> using virtual inheritance. And get to pretty "complex" meta programming constructs such as Boost's <a href="http://www.boost.org/doc/libs/1_36_0/libs/mpl/doc/index.html" rel="nofollow">MPL</a> (<a href="http://ubiety.uwaterloo.ca/~tveldhui/papers/Template-Metaprograms/meta-art.html" rel="nofollow">tutorial</a>). The possibilities for shooting yourself in the foot are endless, but if kept in check (i.e. seasoned programmers), provide some of the best flexibility in terms of maintainability and performance.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/76058#76058 3 Answer by Markowitch for Hidden Features of C++? Markowitch 2008-09-16T19:34:23Z 2008-09-16T19:34:23Z <blockquote> <p>One example out of many: template metaprogramming. Nobody in the standards committee intended there to be a Turing-complete sublanguage that gets executed at compile-time.</p> </blockquote> <p>Template metaprogramming is hardly a hidden feature. It's even in the boost library. See <a href="http://www.boost.org/doc/libs/1_36_0/libs/mpl/doc/index.html" rel="nofollow">MPL</a>. But if "almost hidden" is good enough, then take a look at the <a href="http://www.boost.org/doc/libs" rel="nofollow">boost libraries</a>. It contain many goodies which are not easy accesible without the backing of a strong library.</p> <p>An example is the <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/lambda.html" rel="nofollow">boost lambda functions</a>, which is interesting since C++ does not have lambda functions in the current standard.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/76606#76606 16 Answer by MSN for Hidden Features of C++? MSN 2008-09-16T20:27:20Z 2009-10-15T15:47:23Z <p>Lifetime of temporaries bound to const references is one that few people know about. Or at least it's my favorite piece of C++ knowledge that most people don't know about.</p> <pre><code>const MyClass&amp; x = MyClass(); // temporary exists as long as x is in scope </code></pre> <p>MSN</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/76801#76801 27 Answer by Colin Jensen for Hidden Features of C++? Colin Jensen 2008-09-16T20:41:23Z 2008-09-16T20:41:23Z <p>The array operator is associative.</p> <p>A[8] is a synonym for *(A + 8). Since addition is associative, that can be rewritten as *(8 + A), which is a synonym for..... 8[A]</p> <p>You didn't say useful... :-) </p> http://stackoverflow.com/questions/75538/hidden-features-of-c/77169#77169 3 Answer by Sridhar Iyer for Hidden Features of C++? Sridhar Iyer 2008-09-16T21:12:08Z 2008-09-16T21:12:08Z <p>Most C++ developers ignore the power of template metaprogramming. Check out <a href="http://loki-lib.sourceforge.net/index.php?n=Main.HomePage" rel="nofollow">Loki Libary</a>. It implements several advanced tools like typelist, functor, singleton, smart pointer, object factory, visitor and multimethods using template metaprogramming extensively (from <a href="http://en.wikipedia.org/wiki/Loki_(C%2B%2B)" rel="nofollow">wikipedia</a>). For most part you could consider these as "hidden" c++ feature.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/78128#78128 62 Answer by paercebal for Hidden Features of C++? paercebal 2008-09-16T22:50:52Z 2009-09-23T12:31:41Z <p>I agree with most posts there: C++ is a multi-paradigm language, so the "hidden" features you'll find (other than "undefined behaviours" that you should avoid at all cost) are clever uses of facilities.</p> <p>Most of those facilities are not build-in features of the language, but library-based ones.</p> <p>The most important is the <strong>RAII</strong>, often ignored for years by C++ developers coming from the C world. <strong>Operator overloading</strong> is often a misunderstood feature that enable both array-like behaviour (subscript operator), pointer like operations (smart pointers) and build-in-like operations (multiplying matrices.</p> <p>The use of <strong>exception</strong> is often difficult, but with some work, can produce really robust code through <strong>exception safety</strong> specifications (including code that won't fail, or that will have a commit-like features that is that will succeed, or revert back to its original state).</p> <p>The most famous of "hidden" feature of C++ is <strong>template metaprogramming</strong>, as it enables you to have your program partially (or totally) executed at compile-time instead of runtime. This is difficult, though, and you must have a solid grasp on templates before trying it.</p> <p>Other make uses of the multiple paradigm to produce "ways of programming" outside of C++'s ancestor, that is, C.</p> <p>By using <strong>functors</strong>, you can simulate functions, with the additional type-safety and being state-full. Using the <strong>command</strong> pattern, you can delay code execution. Most other <strong>design patterns</strong> can be easily and efficiently implemented in C++ to produce alternative coding styles not supposed to be inside the list of "official C++ paradigms".</p> <p>By using <strong>templates</strong>, you can produce code that will work on most types, including not the one you thought at first. You can increase type safety,too (like an automated typesafe malloc/realloc/free). C++ object features are really powerful (and thus, dangerous if used carelessly), but even the <strong>dynamic polymorphism</strong> have its static version in C++: the <strong>CRTP</strong>.</p> <p>I have found that most "<em>Effective C++</em>"-type books from Scott Meyers or "<em>Exceptional C++</em>"-type books from Herb Sutter to be both easy to read, and quite treasures of info on known and less known features of C++.</p> <p>Among my preferred is one that should make the hair of any Java programmer rise from horror: In C++, <strong>the most object-oriented way to add a feature to an object is through a non-member non-friend function, instead of a member-function</strong> (i.e. class method), because:</p> <ul> <li><p>In C++, a class' interface is both its member-functions and the non-member functions in the same namespace</p></li> <li><p>non-friend non-member functions have no privileged access to the class internal. As such, using a member function over a non-member non-friend one will weaken the class' encapsulation.</p></li> </ul> <p>This never fails to surprise even experienced developers.</p> <p>(Source: Among others, Herb Sutter's online Guru of the Week #84: <a href="http://www.gotw.ca/gotw/084.htm" rel="nofollow">http://www.gotw.ca/gotw/084.htm</a> )</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/78436#78436 20 Answer by Robert for Hidden Features of C++? Robert 2008-09-16T23:48:52Z 2008-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/75538/hidden-features-of-c/78484#78484 51 Answer by Jason Mock for Hidden Features of C++? Jason Mock 2008-09-16T23:57:50Z 2008-09-16T23:57:50Z <p>One language feature that I consider to be somewhat hidden, because I had never heard about it throughout my entire time in school, is the namespace alias. It wasn't brought to my attention until I ran into examples of it in the boost documentation. Of course, now that I know about it you can find it in any standard C++ reference.</p> <pre><code>namespace fs = boost::filesystem; fs::path myPath( strPath, fs::native ); </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/78557#78557 1 Answer by shoosh for Hidden Features of C++? shoosh 2008-09-17T00:10:15Z 2008-09-17T00:10:15Z <ul> <li>pointers to class methods </li> <li>The "typename" keyword</li> </ul> http://stackoverflow.com/questions/75538/hidden-features-of-c/78840#78840 110 Answer by bhiggins for Hidden Features of C++? bhiggins 2008-09-17T01:09:32Z 2008-09-17T01:09:32Z <p>You can put URIs into C++ source without error. For example:</p> <pre><code>void foo() { http://stackoverflow.com/ int bar = 4; ... } </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/132174#132174 -1 Answer by bernardn for Hidden Features of C++? bernardn 2008-09-25T08:45:25Z 2008-09-25T08:45:25Z <p>Pointer arithmetics.</p> <p>It's actually a C feature, but I noticed that few people that use C/C++ are really aware it even exists. I consider this feature of the C language truly shows the genius and vision of its inventor.</p> <p>To make a long story short, pointer arithmetics allows the compiler to perform a[n] as *(a+n) for any type of a. As a side note, as '+' is commutative a[n] is of course equivalent to n[a].</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/132815#132815 3 Answer by AareP for Hidden Features of C++? AareP 2008-09-25T11:52:28Z 2008-09-25T12:06:32Z <p>Zeroing structs without memset: </p> <pre><code>FStruct s = {0}; </code></pre> <p>Normalizing/wrapping angle- and time-values:</p> <pre><code>int angle = (short)((+180+30)*65536/360) * 360/65536; //==-150 </code></pre> <p>Assigning references:</p> <pre><code>struct ref { int&amp; r; ref(int&amp; r):r(r){} }; int b; ref a(b); int c; *(int**)&amp;a = &amp;c; </code></pre> <p>Doing everything on a single line:</p> <pre><code>void a(); int b(); float c = (a(),b(),1.0f); </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/152659#152659 13 Answer by vividos for Hidden Features of C++? vividos 2008-09-30T11:36:44Z 2008-09-30T11:36:44Z <p>A nice feature that isn't used often is the function-wide try-catch block:</p> <pre><code>int Function() try { // do something here return 42; } catch(...) { return -1; } </code></pre> <p>Main usage would be to translate exception to other exception class and rethrow, or to translate between exceptions and return-based error code handling.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/169114#169114 12 Answer by Sumant for Hidden Features of C++? Sumant 2008-10-03T22:19:54Z 2008-10-03T22:19:54Z <p>Hidden features:</p> <ol> <li>Pure virtual functions can have implementation.</li> <li><p>Exception specifications and std::bad_exception. Read more: <a href="http://cpptruths.blogspot.com/2007/05/use-of-stdbadexception.html" rel="nofollow">http://cpptruths.blogspot.com/2007/05/use-of-stdbadexception.html</a></p></li> <li><p>function try blocks</p></li> <li><p>The template keyword in disambiguating typedefs in a class template. If the name of a member template specialization appears after a ., ->, or :: operator, and that name has explicitly qualified template parameters, prefix the member template name with the keyword template. Read more: <a href="http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Policy_Clone" rel="nofollow">http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Policy_Clone</a></p></li> <li><p>function parameter defaults can be changed at runtime. Read more: <a href="http://cpptruths.blogspot.com/2005/07/changing-c-function-default-arguments.html" rel="nofollow">http://cpptruths.blogspot.com/2005/07/changing-c-function-default-arguments.html</a></p></li> <li><p>A[i] works as good as i[A]</p></li> </ol> http://stackoverflow.com/questions/75538/hidden-features-of-c/170597#170597 10 Answer by Sirish Kumar for Hidden Features of C++? Sirish Kumar 2008-10-04T16:17:09Z 2009-09-23T12:41:47Z <p>Array initialization in constructor. For example in a class if we have a array of <code>int</code> as:</p> <pre><code>class clName { clName(); int a[10]; }; </code></pre> <p>We can initialize all elements in the array to its default (here all elements of array to zero) in the constructor as:</p> <pre><code>clName::clName() : a() { } </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/172357#172357 17 Answer by Constantin for Hidden Features of C++? Constantin 2008-10-05T17:55:44Z 2008-10-05T17:55:44Z <p><code>map::operator[]</code> creates entry if key is missing and returns reference to default-constructed entry value. So you can write:</p> <pre><code>map&lt;int, string&gt; m; string&amp; s = m[42]; // no need for map::find() if (s.empty()) { // assuming we never store empty values in m s.assign(...); } cout &lt;&lt; s; </code></pre> <p>I'm amazed at how many C++ programmers don't know this.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/218306#218306 10 Answer by Jim Hunziker for Hidden Features of C++? Jim Hunziker 2008-10-20T12:45:47Z 2008-10-20T12:45:47Z <p>Putting functions or variables in a nameless namespace deprecates the use of <code>static</code> to restrict them to file scope.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/302563#302563 90 Answer by Ferruccio for Hidden Features of C++? Ferruccio 2008-11-19T16:49:56Z 2009-01-07T21:59:34Z <p>Most C++ programmers are familiar with the ternary operator:</p> <pre><code>x = (y &lt; 0) ? 10 : 20; </code></pre> <p>However, they don't realize that it can be used as an lvalue:</p> <pre><code>(a == 0 ? a : b) = 1; </code></pre> <p>which is shorthand for</p> <pre><code>if (a == 0) a = 1; else b = 1; </code></pre> <p>Use with caution :-)</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/304187#304187 7 Answer by Jason Baker for Hidden Features of C++? Jason Baker 2008-11-20T02:40:27Z 2008-11-20T02:40:27Z <p>Read a file into a vector of strings:</p> <pre><code> vector&lt;string&gt; V; copy(istream_iterator&lt;string&gt;(cin), istream_iterator&lt;string&gt;(), back_inserter(V)); </code></pre> <p><a href="http://www.sgi.com/tech/stl/istream_iterator.html" rel="nofollow">istream_iterator</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/312426#312426 27 Answer by Anonymouse for Hidden Features of C++? Anonymouse 2008-11-23T11:55:05Z 2009-01-07T20:22:55Z <blockquote> <p>Pointer arithmetics.</p> </blockquote> <p>C++ programmers prefer to avoid pointers because of the bugs that can be introduced.</p> <p>The coolest C++ I've ever seen though? <a href="http://www.xs4all.nl/~weegen/eelis/analogliterals.xhtml" rel="nofollow" title="Analog literals.">Analog literals.</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/312449#312449 12 Answer by Johannes Schaub - litb for Hidden Features of C++? Johannes Schaub - litb 2008-11-23T12:24:05Z 2009-02-21T13:56:56Z <p>A quite hidden feature is that you can define variables within an if condition, and its scope will span only over the if, and its else blocks:</p> <pre><code>if(int * p = getPointer()) { // do something } </code></pre> <p>Some macros use that, for example to provide some "locked" scope like this:</p> <pre><code>struct MutexLocker { MutexLocker(Mutex&amp;); ~MutexLocker(); operator bool() const { return false; } private: Mutex &amp;m; }; #define locked(mutex) if(MutexLocker const&amp; lock = MutexLocker(mutex)) {} else void someCriticalPath() { locked(myLocker) { /* ... */ } } </code></pre> <p>Also BOOST_FOREACH uses it under the hood. To complete this, it's not only possible in an if, but also in a switch:</p> <pre><code>switch(int value = getIt()) { // ... } </code></pre> <p>and in a while loop:</p> <pre><code>while(SomeThing t = getSomeThing()) { // ... } </code></pre> <p>(and also in a for condition). But i'm not too sure whether these are all that useful :)</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/409233#409233 2 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-01-03T15:44:32Z 2009-01-03T15:44:32Z <p>Defining functions having identical signatures in the same scope. such that:</p> <pre><code>template&lt;&gt; void f&lt;&gt;(int*) { std::cout &lt;&lt; "f(int *) specilization\n"; } </code></pre> <p>and</p> <pre><code>template&lt;&gt; void f&lt;&gt;(int*) { std::cout &lt;&lt; "f(int *) another specilization\n"; } </code></pre> <p><a href="http://cpptruths.blogspot.com/2008/01/function-template-overload-resolution.html" rel="nofollow">http://cpptruths.blogspot.com/2008/01/function-template-overload-resolution.html</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/421854#421854 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-01-07T20:02:23Z 2009-01-07T20:02:23Z <p>If operator delete() takes size argument in addition to *void, that means it will, highly, be a base class. That size argument render possible checking the size of the types in order to destroy the correct one. Here what <a href="http://semantics.org/commonknowledge/index.html" rel="nofollow">Stephen Dewhurst</a> tells about this:</p> <blockquote> <p>Notice also that we've employed a two-argument version of operator delete rather than the usual one-argument version. This two-argument version is another "usual" version of member operator delete often employed by base classes that expect derived classes to inherit their operator delete implementation. The second argument will contain the size of the object being deleted—information that is often useful in implementing custom memory management.</p> </blockquote> http://stackoverflow.com/questions/75538/hidden-features-of-c/421896#421896 4 Answer by Eclipse for Hidden Features of C++? Eclipse 2009-01-07T20:14:42Z 2009-01-07T20:14:42Z <p>One of the most interesting grammars of any programming languages. Three of these things belong together, and one is something altogether different...</p> <pre><code>SomeType t = u; SomeType t(u); SomeType t(); SomeType t; </code></pre> <p>All but the third one define a <code>SomeType</code> on the stack and initialize it (with <code>u</code> in the first two case, and the default constructor in the fourth. The third one is actually declaring a function that takes no parameters and returns a <code>SomeType</code>.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/432333#432333 29 Answer by Johannes Schaub - litb for Hidden Features of C++? Johannes Schaub - litb 2009-01-11T04:02:24Z 2009-01-22T11:22:00Z <p>One thing that's little known is that unions can be templates too:</p> <pre><code>template&lt;typename From, typename To&gt; union union_cast { From from; To to; union_cast(From from) :from(from) { } To getTo() const { return to; } }; </code></pre> <p>And they can have constructors and member functions too. Just nothing that has to do with inheritance (including virtual functions). </p> http://stackoverflow.com/questions/75538/hidden-features-of-c/456773#456773 6 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-01-19T07:05:32Z 2009-01-19T07:05:32Z <p>Defining ordinary friend functions in class templates needs special attention:</p> <pre><code>template &lt;typename T&gt; class Creator { friend void appear() { // a new function ::appear(), but it doesn't … // exist until Creator is instantiated } }; Creator&lt;void&gt; miracle; // ::appear() is created at this point Creator&lt;double&gt; oops; // ERROR: ::appear() is created a second time! </code></pre> <p>In this example, two different instantiations create two identical definitions—a direct violation of the <a href="http://en.wikipedia.org/wiki/One_Definition_Rule" rel="nofollow">ODR</a> </p> <p>We must therefore make sure the template parameters of the class template appear in the type of any friend function defined in that template (unless we want to prevent more than one instantiation of a class template in a particular file, but this is rather unlikely). Let's apply this to a variation of our previous example:</p> <pre><code>template &lt;typename T&gt; class Creator { friend void feed(Creator&lt;T&gt;*){ // every T generates a different … // function ::feed() } }; Creator&lt;void&gt; one; // generates ::feed(Creator&lt;void&gt;*) Creator&lt;double&gt; two; // generates ::feed(Creator&lt;double&gt;*) </code></pre> <p>Disclaimer: I have pasted this section from <a href="http://rads.stackoverflow.com/amzn/click/0201734842" rel="nofollow">C++ Templates: The Complete Guide</a> / Section 8.4</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/456787#456787 4 Answer by acidzombie24 for Hidden Features of C++? acidzombie24 2009-01-19T07:26:52Z 2009-09-09T23:50:59Z <p>A dangerous secret is</p> <pre><code>Fred* f = new(ram) Fred(); http://www.parashift.com/c++-faq-lite/dtors.html#faq-11.10 f-&gt;~Fred(); </code></pre> <p>My favorite secret I rarely see used:</p> <pre><code>class A { }; struct B { A a; operator A&amp;() { return a; } }; void func(A a) { } int main() { A a, c; B b; a=c; func(b); //yeah baby a=b; //gotta love this } </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/572900#572900 -1 Answer by dirkgently for Hidden Features of C++? dirkgently 2009-02-21T12:33:20Z 2009-10-15T15:34:42Z <pre><code>class Empty { Empty() {} }; namespace std { /* #1 extending std namespace is ok for your custom datatypes */ /* #2 The following function has no arguments. There is no 'unknown argument list' as we do in C. */ void swap&lt;YourType&gt;(const T&amp;, const T&amp;) {} } void my_function() { /* cout &lt;&lt; "whoa! an error\n"; #3 using is only valid in main */ } int main() { using namespace std; /* #4 you can use using anywhere */ cout &lt;&lt; sizeof Empty &lt;&lt; "\n"; /* #5 sizeof Empty != 0 */ /* #6 falling off of main without an explicit return 0; */ } </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/674995#674995 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-03-23T19:54:11Z 2009-03-23T19:54:11Z <p><a href="http://www.devx.com/cplus/10MinuteSolution/32145/0/page/1" rel="nofollow">Indirect Conversion Idiom</a>:</p> <blockquote> <p>Suppose you're designing a smart pointer class. In addition to overloading the operators * and ->, a smart pointer class usually defines a conversion operator to bool:</p> </blockquote> <pre><code>template &lt;class T&gt; class Ptr { public: operator bool() const { return (rawptr ? true: false); } //..more stuff private: T * rawptr; }; </code></pre> <blockquote> <p>The conversion to bool enables clients to use smart pointers in expressions that require bool operands:</p> </blockquote> <pre><code>Ptr&lt;int&gt; ptr(new int); if(ptr ) //calls operator bool() cout&lt;&lt;"int value is: "&lt;&lt;*ptr &lt;&lt;endl; else cout&lt;&lt;"empty"&lt;&lt;endl; </code></pre> <blockquote> <p>Furthermore, the implicit conversion to bool is required in conditional declarations such as:</p> </blockquote> <pre><code>if (shared_ptr&lt;X&gt; px = dynamic_pointer_cast&lt;X&gt;(py)) { //we get here only of px isn't empty } </code></pre> <blockquote> <p>Alas, this automatic conversion opens the gate to unwelcome surprises:</p> </blockquote> <pre><code>Ptr &lt;int&gt; p1; Ptr &lt;double&gt; p2; //surprise #1 cout&lt;&lt;"p1 + p2 = "&lt;&lt; p1+p2 &lt;&lt;endl; //prints 0, 1, or 2, although there isn't an overloaded operator+() Ptr &lt;File&gt; pf; Ptr &lt;Query&gt; pq; // Query and File are unrelated //surprise #2 if(pf==pq) //compares bool values, not pointers! </code></pre> <p>Solution: Use the "indirect conversion" idiom, by a conversion from pointer to data member[pMember] to bool so that there will be only 1 implicit conversion, which will prevent aforementioned unexpected behaviour: pMember->bool rather that bool->something else.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/691496#691496 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-03-27T21:22:01Z 2009-03-27T21:22:01Z <p>Pay attention to difference between free function pointer and member function pointer initializations:</p> <p>member function:</p> <pre><code>struct S { void func(){}; }; int main(){ void (S::*pmf)()=&amp;S::func;// &amp; is mandatory } </code></pre> <p>and free function:</p> <pre><code>void func(int){} int main(){ void (*pf)(int)=func; // &amp; is unnecessary it can be &amp;func as well; } </code></pre> <p>Thanks to this redundant &amp;, you can add stream manipulators-which are free functions- in chain without it:</p> <pre><code>cout&lt;&lt;hex&lt;&lt;56; //otherwise you would have to write cout&lt;&lt;&amp;hex&lt;&lt;56, not neat. </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/730018#730018 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-04-08T13:31:53Z 2009-04-08T13:31:53Z <p><a href="http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence">Is it possible for C++ template to check for a function’s existence?</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/754133#754133 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-04-15T23:19:17Z 2009-06-22T07:32:27Z <p>Emulating <strong>reinterpret cast</strong> with <strong>static cast</strong> :</p> <pre><code>int var; string *str = reinterpret_cast&lt;string*&gt;(&amp;var); </code></pre> <p>the above code is equivalent to following:</p> <pre><code>int var; string *str = static_cast&lt;string*&gt;(static_cast&lt;void*&gt;(&amp;var)); </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/876180#876180 0 Answer by a_m0d for Hidden Features of C++? a_m0d 2009-05-18T03:44:33Z 2009-05-18T03:44:33Z <p>Classes, structs, and unions can all be used very similarly to for objects with attributes and operations. The main difference is that in classes, the attributes (and members???) are private by default, whereas in unions and structs they are public by default.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/889001#889001 21 Answer by Johannes Schaub - litb for Hidden Features of C++? Johannes Schaub - litb 2009-05-20T16:36:38Z 2009-05-20T16:36:38Z <p>Not only can variables be declared in the init part of a <code>for</code> loop, but also classes and functions. </p> <pre><code>for(struct { int a; float b; } loop = { 1, 2 }; ...; ...) { ... } </code></pre> <p>That allows for multiple variables of differing types.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/903449#903449 0 Answer by Comptrol for Hidden Features of C++? Comptrol 2009-05-24T09:52:13Z 2009-05-24T09:52:13Z <p>Adding <a href="http://stackoverflow.com/questions/122316/template-constraints-c">constraints</a> to templates.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1029069#1029069 4 Answer by for Hidden Features of C++? 2009-06-22T19:45:10Z 2009-06-22T19:45:10Z <p>Primitive types have constructors.</p> <p>int i(3);</p> <p>works.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1064070#1064070 3 Answer by vobject for Hidden Features of C++? vobject 2009-06-30T14:43:09Z 2009-06-30T14:43:09Z <p>It seems to me that only few people know about anonymous namespaces: </p> <pre><code>namespace { // Classes, methods or variables here. } </code></pre> <p>It limits classes, methods or variables to the scope of the current file. They will not be callable from other files. </p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1065606#1065606 7 Answer by Johannes Schaub - litb for Hidden Features of C++? Johannes Schaub - litb 2009-06-30T19:42:48Z 2009-09-09T22:14:48Z <p>You can access protected data and function members of any class, without undefined behavior, and with expected semantics. Read on to see how. Read also <a href="http://tinyurl.com/defect-report" rel="nofollow">the defect report</a> about this. </p> <p>Normally, C++ forbids you to access non-static protected members of a class's object, even if that class is your base class</p> <pre><code>struct A { protected: int a; }; struct B : A { // error: can't access protected member static int get(A &amp;x) { return x.a; } }; struct C : A { }; </code></pre> <p>That's forbidden: You and the compiler don't know what the reference actually points at. It could be a <code>C</code> object, in which case class <code>B</code> has no business and clue about its data. Such access is only granted if <code>x</code> is a reference to a derived class or one derived from it. And it could allow arbitrary piece of code to read any protected member by just making up a "throw-away" class that reads out members, for example of <code>std::stack</code>:</p> <pre><code>void f(std::stack&lt;int&gt; &amp;s) { // now, let's decide to mess with that stack! struct pillager : std::stack&lt;int&gt; { static std::deque&lt;int&gt; &amp;get(std::stack&lt;int&gt; &amp;s) { // error: stack&lt;int&gt;::c is protected return s.c; } }; // haha, now let's inspect the stack's middle elements! std::deque&lt;int&gt; &amp;d = pillager::get(s); } </code></pre> <p>Surely, as you see this would cause way too much damage. But now, member pointers allow circumventing this protection! The key point is that the type of a member pointer is bound to the class that actually contains said member - <em>not</em> to the class that you specified when taking the address. This allows us to circumvent checking</p> <pre><code>struct A { protected: int a; }; struct B : A { // valid: *can* access protected member static int get(A &amp;x) { return x.*(&amp;B::a); } }; struct C : A { }; </code></pre> <p>And of course, it also works with the <code>std::stack</code> example. </p> <pre><code>void f(std::stack&lt;int&gt; &amp;s) { // now, let's decide to mess with that stack! struct pillager : std::stack&lt;int&gt; { static std::deque&lt;int&gt; &amp;get(std::stack&lt;int&gt; &amp;s) { return s.*(pillager::c); } }; // haha, now let's inspect the stack's middle elements! std::deque&lt;int&gt; &amp;d = pillager::get(s); } </code></pre> <p>That's going to be even easier with a using declaration in the derived class, which makes the member name public and refers to the member of the base class. </p> <pre><code>void f(std::stack&lt;int&gt; &amp;s) { // now, let's decide to mess with that stack! struct pillager : std::stack&lt;int&gt; { using std::stack&lt;int&gt;::c; }; // haha, now let's inspect the stack's middle elements! std::deque&lt;int&gt; &amp;d = s.*(&amp;pillager::c); } </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/1402670#1402670 0 Answer by Kamil Szot for Hidden Features of C++? Kamil Szot 2009-09-09T23:29:19Z 2009-09-09T23:29:19Z <p>Member pointers and member pointer operator ->* </p> <pre><code>#include &lt;stdio.h&gt; struct A { int d; int e() { return d; } }; int main() { A* a = new A(); a-&gt;d = 8; printf("%d %d\n", a -&gt;* &amp;A::d, (a -&gt;* &amp;A::e)() ); return 0; } </code></pre> <p>For methods (a ->* &amp;A::e)() is a bit like Function.call() from javascript </p> <pre><code>var f = A.e f.call(a) </code></pre> <p>For members it's a bit like accessing with [] operator </p> <pre><code>a['d'] </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/1414869#1414869 4 Answer by Johannes Schaub - litb for Hidden Features of C++? Johannes Schaub - litb 2009-09-12T11:06:19Z 2009-09-12T11:06:19Z <p>Many know of the <code>identity</code> / <code>id</code> metafunction, but there is a nice usecase for it for non-template cases: Ease writing declarations:</p> <pre><code>// void (*f)(); // same id&lt;void()&gt;::type *f; // void (*f(void(*p)()))(int); // same id&lt;void(int)&gt;::type *f(id&lt;void()&gt;::type *p); // int (*p)[2] = new int[10][2]; // same id&lt;int[2]&gt;::type *p = new int[10][2]; // void (C::*p)(int) = 0; // same id&lt;void(int)&gt;::type C::*p = 0; </code></pre> <p>It helps decrypting C++ declarations greatly!</p> <pre><code>// boost::identity is pretty much the same template&lt;typename T&gt; struct id { typedef T type; }; </code></pre> http://stackoverflow.com/questions/75538/hidden-features-of-c/1465581#1465581 1 Answer by sdcvvc for Hidden Features of C++? sdcvvc 2009-09-23T12:08:06Z 2009-09-23T12:08:06Z <p><a href="http://www.reddit.com/r/programming/comments/96aku/in%5Fc%5Fthrow%5Fis%5Fan%5Fexpression/" rel="nofollow">throw is an expression</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1573354#1573354 0 Answer by Marcus Lindblom for Hidden Features of C++? Marcus Lindblom 2009-10-15T16:04:04Z 2009-10-15T16:04:04Z <p>I find recursive template instatiations pretty cool:</p> <pre><code>template&lt;class int&gt; class foo; template class foo&lt;0&gt; { int* get&lt;0&gt;() { return array; } int* array; }; template&lt;class int&gt; class foo&lt;i&gt; : public foo&lt;i-1&gt; { int* get&lt;i&gt;() { return array + 1; } }; </code></pre> <p>I've used that to generate a class with 10-15 functions that return pointers into various parts of an array, since an API I used required one function pointer for each value.</p> <p>I.e. programming the compiler to generate a bunch of functions, via recursion. Easy as pie. :)</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1771776#1771776 0 Answer by Jeffrey Faust for Hidden Features of C++? Jeffrey Faust 2009-11-20T16:53:05Z 2009-11-20T16:53:05Z <p>main() does not need a return value:</p> <pre><code>int main(){} </code></pre> <p>is the shortest valid C++ program.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/1771843#1771843 0 Answer by Kaz Dragon for Hidden Features of C++? Kaz Dragon 2009-11-20T17:01:16Z 2009-11-20T17:01:16Z <p>You can template bitfields.</p> <pre><code>template &lt;size_t X, size_t Y&gt; struct bitfield { char left : X; char right : Y; }; </code></pre> <p>I have yet to come up with any purpose for this, but it sure as heck surprised me.</p>