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++?
|
locked by Robert Harvey♦ Oct 5 '11 at 5:45
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
closed as not constructive by casperOne♦ Feb 29 '12 at 16:53
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I found this blog to be an amazing resource about the arcanes of C++ : C++ Truths. |
||||
|
|
|
A dangerous secret is
My favorite secret I rarely see used:
|
|||||
|
|
Local classes are awesome :
quite neat, since it doesn't pollute the namespace with useless class definitions... |
||||
|
|
|
Primitive types have constructors.
works. |
|||||
|
|
One hidden feature, even hidden to the GCC developers, is to initialize an array member using a string literal. Suppose you have a structure that needs to work with a C array, and you want to initialize the array member with a default content
This works, and only works with char arrays and string literal initializers. No |
||||
|
|
Template metaprogramming is hardly a hidden feature. It's even in the boost library. See MPL. But if "almost hidden" is good enough, then take a look at the boost libraries. It contain many goodies which are not easy accesible without the backing of a strong library. One example is boost.lambda library, which is interesting since C++ does not have lambda functions in the current standard. Another example is Loki, which "makes extensive use of C++ template metaprogramming and implements several commonly used tools: typelist, functor, singleton, smart pointer, object factory, visitor and multimethods." [Wikipedia] |
|||||
|
|
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. 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 http://www.boost.org/doc/libs/1_36_0/doc/html/lambda.html among them). To understand the way how simple language constuction can be combined to something powerful it is good to read "C++ Templates: The Complete Guide" by David Vandevoorde, Nicolai M. Josuttis and really magic book "Modern C++ Design ... " by Andrei Alexandrescu. And finally, it is difficult to learn C++, you should try to fill it ;) |
||||
|
|
|
It seems to me that only few people know about unnamed namespaces:
Unnamed namespaces behave as if they was replaced by:
".. where all occurances of [this unique name] in a translation unit are replaced by the same identifier and this identifier differs from all other identifiers in the entire program." [C++03, 7.3.1.1/1] |
||||
|
|
|
I'm not sure about hidden, but there are some interesting 'tricks' that probably aren't obvious from just reading the spec. |
||||
|
|
|
Most C++ developers ignore the power of template metaprogramming. Check out Loki Libary. It implements several advanced tools like typelist, functor, singleton, smart pointer, object factory, visitor and multimethods using template metaprogramming extensively (from wikipedia). For most part you could consider these as "hidden" c++ feature. |
||||
|
|
|
||||
|
|
|
There are a lot of "undefined behavior". You can learn how to avoid them reading good books and reading the standards. |
|||||
|
|
From C++ Truths. Defining functions having identical signatures in the same scope, so this is legal:
|
|||||
|
|
Pay attention to difference between free function pointer and member function pointer initializations: member function:
and free function:
Thanks to this redundant &, you can add stream manipulators-which are free functions- in chain without it:
|
|||
|
|
|
||||
|
|
|
main() does not need a return value:
is the shortest valid C++ program. |
|||||
|
|
There are tons of "tricky" constructs in C++. They go from "simple" implementions of sealed/final classes using virtual inheritance. And get to pretty "complex" meta programming constructs such as Boost's MPL (tutorial). 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. |
||||
|
|
|
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 Stephen Dewhurst tells about this:
|
||||
|
|
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. |
||||
|
|
|
I find recursive template instatiations pretty cool:
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. I.e. programming the compiler to generate a bunch of functions, via recursion. Easy as pie. :) |
||||
|
|
|
The class and struct class-keys are nearly identical. The main difference is that classes default to private access for members and bases, while structs default to public:
Unions can also have members and methods, and default to public access similarly to structs. |
||||
|
|
|
Adding constraints to templates. |
||||
|
|
|
Member pointers and member pointer operator ->*
For methods (a ->* &A::e)() is a bit like Function.call() from javascript
For members it's a bit like accessing with [] operator
|
||||
|
|
|
My favorite (for the time being) is the lack of sematics in a statement like A=B=C. What the value of A is basically undetermined. Think of this:
now A might be of a type inaccessible to any other than objects of type clB and have a value that's unrelated to C. |
||||
|
|
|
You can view all the predefined macros through command-line switches with some compilers. This works with gcc and icc (Intel's C++ compiler):
For MSVC they are listed in a single place. They could be documented in a single place for the others too, but with the above commands you can clearly see what is and isn't defined and exactly what values are used, after applying all of the other command-line switches. Compare (after sorting):
|
||||
|
|
|
|||||||||||||||||||||
|
|
Emulating reinterpret cast with static cast :
the above code is equivalent to following:
|
|||||||||
|
|
Pointer arithmetics. 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. 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]. |
|||||
|