Hidden Features of C++? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T22:16:15Zhttp://stackoverflow.com/feeds/question/75538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75538/hidden-features-of-c49Hidden Features of C++?Craig H2008-09-16T18:37:05Z2009-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-6Answer by Markowitch for Hidden Features of C++?Markowitch2008-09-16T18:39:47Z2008-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#755813Answer by dbrien for Hidden Features of C++?dbrien2008-09-16T18:41:32Z2008-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#7562735Answer by Konrad Rudolph for Hidden Features of C++?Konrad Rudolph2008-09-16T18:46:07Z2008-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#757098Answer by Drealmer for Hidden Features of C++?Drealmer2008-09-16T18:57:34Z2009-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#758184Answer by sergdev for Hidden Features of C++?sergdev2008-09-16T19:07:49Z2008-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#758494Answer by ugasoft for Hidden Features of C++?ugasoft2008-09-16T19:10:07Z2009-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#759171Answer by Amir for Hidden Features of C++?Amir2008-09-16T19:18:21Z2008-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#760583Answer by Markowitch for Hidden Features of C++?Markowitch2008-09-16T19:34:23Z2008-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#7660616Answer by MSN for Hidden Features of C++?MSN2008-09-16T20:27:20Z2009-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& 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#7680127Answer by Colin Jensen for Hidden Features of C++?Colin Jensen2008-09-16T20:41:23Z2008-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#771693Answer by Sridhar Iyer for Hidden Features of C++?Sridhar Iyer2008-09-16T21:12:08Z2008-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#7812862Answer by paercebal for Hidden Features of C++?paercebal2008-09-16T22:50:52Z2009-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#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/75538/hidden-features-of-c/78484#7848451Answer by Jason Mock for Hidden Features of C++?Jason Mock2008-09-16T23:57:50Z2008-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#785571Answer by shoosh for Hidden Features of C++?shoosh2008-09-17T00:10:15Z2008-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#78840110Answer by bhiggins for Hidden Features of C++?bhiggins2008-09-17T01:09:32Z2008-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-1Answer by bernardn for Hidden Features of C++?bernardn2008-09-25T08:45:25Z2008-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#1328153Answer by AareP for Hidden Features of C++?AareP2008-09-25T11:52:28Z2008-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& r;
ref(int& r):r(r){}
};
int b;
ref a(b);
int c;
*(int**)&a = &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#15265913Answer by vividos for Hidden Features of C++?vividos2008-09-30T11:36:44Z2008-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#16911412Answer by Sumant for Hidden Features of C++?Sumant2008-10-03T22:19:54Z2008-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#17059710Answer by Sirish Kumar for Hidden Features of C++?Sirish Kumar2008-10-04T16:17:09Z2009-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#17235717Answer by Constantin for Hidden Features of C++?Constantin2008-10-05T17:55:44Z2008-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<int, string> m;
string& s = m[42]; // no need for map::find()
if (s.empty()) { // assuming we never store empty values in m
s.assign(...);
}
cout << 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#21830610Answer by Jim Hunziker for Hidden Features of C++?Jim Hunziker2008-10-20T12:45:47Z2008-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#30256390Answer by Ferruccio for Hidden Features of C++?Ferruccio2008-11-19T16:49:56Z2009-01-07T21:59:34Z<p>Most C++ programmers are familiar with the ternary operator:</p>
<pre><code>x = (y < 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#3041877Answer by Jason Baker for Hidden Features of C++?Jason Baker2008-11-20T02:40:27Z2008-11-20T02:40:27Z<p>Read a file into a vector of strings:</p>
<pre><code> vector<string> V;
copy(istream_iterator<string>(cin), istream_iterator<string>(),
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#31242627Answer by Anonymouse for Hidden Features of C++?Anonymouse2008-11-23T11:55:05Z2009-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#31244912Answer by Johannes Schaub - litb for Hidden Features of C++?Johannes Schaub - litb2008-11-23T12:24:05Z2009-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&);
~MutexLocker();
operator bool() const { return false; }
private:
Mutex &m;
};
#define locked(mutex) if(MutexLocker const& 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#4092332Answer by Comptrol for Hidden Features of C++?Comptrol2009-01-03T15:44:32Z2009-01-03T15:44:32Z<p>Defining functions having identical signatures in the same scope. such that:</p>
<pre><code>template<>
void f<>(int*) {
std::cout << "f(int *) specilization\n";
}
</code></pre>
<p>and</p>
<pre><code>template<>
void f<>(int*) {
std::cout << "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#4218540Answer by Comptrol for Hidden Features of C++?Comptrol2009-01-07T20:02:23Z2009-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#4218964Answer by Eclipse for Hidden Features of C++?Eclipse2009-01-07T20:14:42Z2009-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#43233329Answer by Johannes Schaub - litb for Hidden Features of C++?Johannes Schaub - litb2009-01-11T04:02:24Z2009-01-22T11:22:00Z<p>One thing that's little known is that unions can be templates too:</p>
<pre><code>template<typename From, typename To>
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#4567736Answer by Comptrol for Hidden Features of C++?Comptrol2009-01-19T07:05:32Z2009-01-19T07:05:32Z<p>Defining ordinary friend functions in class templates needs special attention:</p>
<pre><code>template <typename T>
class Creator {
friend void appear() { // a new function ::appear(), but it doesn't
… // exist until Creator is instantiated
}
};
Creator<void> miracle; // ::appear() is created at this point
Creator<double> 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 <typename T>
class Creator {
friend void feed(Creator<T>*){ // every T generates a different
… // function ::feed()
}
};
Creator<void> one; // generates ::feed(Creator<void>*)
Creator<double> two; // generates ::feed(Creator<double>*)
</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#4567874Answer by acidzombie24 for Hidden Features of C++?acidzombie242009-01-19T07:26:52Z2009-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->~Fred();
</code></pre>
<p>My favorite secret I rarely see used:</p>
<pre><code>class A
{
};
struct B
{
A a;
operator A&() { 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-1Answer by dirkgently for Hidden Features of C++?dirkgently2009-02-21T12:33:20Z2009-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<YourType>(const T&, const T&) {}
}
void my_function() {
/* cout << "whoa! an error\n"; #3 using is only valid in main */
}
int main() {
using namespace std; /* #4 you can use using anywhere */
cout << sizeof Empty << "\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#6749950Answer by Comptrol for Hidden Features of C++?Comptrol2009-03-23T19:54:11Z2009-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 <class T>
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<int> ptr(new int);
if(ptr ) //calls operator bool()
cout<<"int value is: "<<*ptr <<endl;
else
cout<<"empty"<<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<X> px = dynamic_pointer_cast<X>(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 <int> p1;
Ptr <double> p2;
//surprise #1
cout<<"p1 + p2 = "<< p1+p2 <<endl;
//prints 0, 1, or 2, although there isn't an overloaded operator+()
Ptr <File> pf;
Ptr <Query> 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#6914960Answer by Comptrol for Hidden Features of C++?Comptrol2009-03-27T21:22:01Z2009-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)()=&S::func;// & is mandatory
}
</code></pre>
<p>and free function:</p>
<pre><code>void func(int){}
int main(){
void (*pf)(int)=func; // & is unnecessary it can be &func as well;
}
</code></pre>
<p>Thanks to this redundant &, you can add stream manipulators-which are free functions- in chain without it:</p>
<pre><code>cout<<hex<<56; //otherwise you would have to write cout<<&hex<<56, not neat.
</code></pre>
http://stackoverflow.com/questions/75538/hidden-features-of-c/730018#7300180Answer by Comptrol for Hidden Features of C++?Comptrol2009-04-08T13:31:53Z2009-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#7541330Answer by Comptrol for Hidden Features of C++?Comptrol2009-04-15T23:19:17Z2009-06-22T07:32:27Z<p>Emulating <strong>reinterpret cast</strong> with <strong>static cast</strong> :</p>
<pre><code>int var;
string *str = reinterpret_cast<string*>(&var);
</code></pre>
<p>the above code is equivalent to following:</p>
<pre><code>int var;
string *str = static_cast<string*>(static_cast<void*>(&var));
</code></pre>
http://stackoverflow.com/questions/75538/hidden-features-of-c/876180#8761800Answer by a_m0d for Hidden Features of C++?a_m0d2009-05-18T03:44:33Z2009-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#88900121Answer by Johannes Schaub - litb for Hidden Features of C++?Johannes Schaub - litb2009-05-20T16:36:38Z2009-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#9034490Answer by Comptrol for Hidden Features of C++?Comptrol2009-05-24T09:52:13Z2009-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#10290694Answer by for Hidden Features of C++?2009-06-22T19:45:10Z2009-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#10640703Answer by vobject for Hidden Features of C++?vobject2009-06-30T14:43:09Z2009-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#10656067Answer by Johannes Schaub - litb for Hidden Features of C++?Johannes Schaub - litb2009-06-30T19:42:48Z2009-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 &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<int> &s) {
// now, let's decide to mess with that stack!
struct pillager : std::stack<int> {
static std::deque<int> &get(std::stack<int> &s) {
// error: stack<int>::c is protected
return s.c;
}
};
// haha, now let's inspect the stack's middle elements!
std::deque<int> &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 &x) { return x.*(&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<int> &s) {
// now, let's decide to mess with that stack!
struct pillager : std::stack<int> {
static std::deque<int> &get(std::stack<int> &s) {
return s.*(pillager::c);
}
};
// haha, now let's inspect the stack's middle elements!
std::deque<int> &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<int> &s) {
// now, let's decide to mess with that stack!
struct pillager : std::stack<int> {
using std::stack<int>::c;
};
// haha, now let's inspect the stack's middle elements!
std::deque<int> &d = s.*(&pillager::c);
}
</code></pre>
http://stackoverflow.com/questions/75538/hidden-features-of-c/1402670#14026700Answer by Kamil Szot for Hidden Features of C++?Kamil Szot2009-09-09T23:29:19Z2009-09-09T23:29:19Z<p>Member pointers and member pointer operator ->* </p>
<pre><code>#include <stdio.h>
struct A { int d; int e() { return d; } };
int main() {
A* a = new A();
a->d = 8;
printf("%d %d\n", a ->* &A::d, (a ->* &A::e)() );
return 0;
}
</code></pre>
<p>For methods (a ->* &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#14148694Answer by Johannes Schaub - litb for Hidden Features of C++?Johannes Schaub - litb2009-09-12T11:06:19Z2009-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<void()>::type *f;
// void (*f(void(*p)()))(int); // same
id<void(int)>::type *f(id<void()>::type *p);
// int (*p)[2] = new int[10][2]; // same
id<int[2]>::type *p = new int[10][2];
// void (C::*p)(int) = 0; // same
id<void(int)>::type C::*p = 0;
</code></pre>
<p>It helps decrypting C++ declarations greatly!</p>
<pre><code>// boost::identity is pretty much the same
template<typename T>
struct id { typedef T type; };
</code></pre>
http://stackoverflow.com/questions/75538/hidden-features-of-c/1465581#14655811Answer by sdcvvc for Hidden Features of C++?sdcvvc2009-09-23T12:08:06Z2009-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#15733540Answer by Marcus Lindblom for Hidden Features of C++?Marcus Lindblom2009-10-15T16:04:04Z2009-10-15T16:04:04Z<p>I find recursive template instatiations pretty cool:</p>
<pre><code>template<class int>
class foo;
template
class foo<0> {
int* get<0>() { return array; }
int* array;
};
template<class int>
class foo<i> : public foo<i-1> {
int* get<i>() { 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#17717760Answer by Jeffrey Faust for Hidden Features of C++?Jeffrey Faust2009-11-20T16:53:05Z2009-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#17718430Answer by Kaz Dragon for Hidden Features of C++?Kaz Dragon2009-11-20T17:01:16Z2009-11-20T17:01:16Z<p>You can template bitfields.</p>
<pre><code>template <size_t X, size_t Y>
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>