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++?
|
83
|
|||||
|
|
|
You can template bitfields.
I have yet to come up with any purpose for this, but it sure as heck surprised me. |
|||
|
|
|
|
main() does not need a return value:
is the shortest valid C++ program. |
|||
|
|
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. :) |
|||
|
|
|
|
Many know of the
It helps decrypting C++ declarations greatly!
|
|||
|
|
|
|
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
|
|||
|
|
|
|
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 the defect report about this. Normally, C++ forbids you to access non-static protected members of a class's object, even if that class is your base class
That's forbidden: You and the compiler don't know what the reference actually points at. It could be a
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 - not to the class that you specified when taking the address. This allows us to circumvent checking
And of course, it also works with the
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.
|
|||
|
|
It seems to me that only few people know about anonymous namespaces:
It limits classes, methods or variables to the scope of the current file. They will not be callable from other files. |
|||
|
|
Primitive types have constructors. int i(3); works. |
|||
|
|
|
|
Adding constraints to templates. |
|||
|
|
|
|
Not only can variables be declared in the init part of a
That allows for multiple variables of differing types. |
||||
|
|
|
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. |
|||
|
|
|
|
Emulating reinterpret cast with static cast :
the above code is equivalent to following:
|
|||
|
|
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:
|
||
|
|
|
|
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. |
|||
|
|
|
|
|
||||
|
|
|
A dangerous secret is
My favorite secret I rarely see used:
|
|||
|
|
|
|
Defining ordinary friend functions in class templates needs special attention:
In this example, two different instantiations create two identical definitions—a direct violation of the ODR 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:
Disclaimer: I have pasted this section from C++ Templates: The Complete Guide / Section 8.4 |
|||
|
|
|
|
One thing that's little known is that unions can be templates too:
And they can have constructors and member functions too. Just nothing that has to do with inheritance (including virtual functions). |
|||
|
|
One of the most interesting grammars of any programming languages. Three of these things belong together, and one is something altogether different...
All but the third one define a |
||||||||
|
|
|
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:
|
|||
|
|
|
|
Defining functions having identical signatures in the same scope. such that:
and
http://cpptruths.blogspot.com/2008/01/function-template-overload-resolution.html |
||||
|
|
|
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:
Some macros use that, for example to provide some "locked" scope like this:
Also BOOST_FOREACH uses it under the hood. To complete this, it's not only possible in an if, but also in a switch:
and in a while loop:
(and also in a for condition). But i'm not too sure whether these are all that useful :) |
|||
|
|
C++ programmers prefer to avoid pointers because of the bugs that can be introduced. The coolest C++ I've ever seen though? Analog literals. |
|||
|
|
Read a file into a vector of strings:
|
||||
|
|
|
Most C++ programmers are familiar with the ternary operator:
However, they don't realize that it can be used as an lvalue:
which is shorthand for
Use with caution :-) |
||||||||||||
|
|
|
Putting functions or variables in a nameless namespace deprecates the use of |
|||
|
|
|
|
I'm amazed at how many C++ programmers don't know this. |
|||
|
|
Array initialization in constructor.
For example in a class if we have a array of
We can initialize all elements in the array to its default (here all elements of array to zero) in the constructor as:
|
|||
|
|
