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++?
|
89
|
|||||
|
|
|
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). |
|||
|
|
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 |
|||
|
|
|
|
A dangerous secret is
My favorite secret I rarely see used:
|
|||
|
|
|
|
|
||||
|
|
|
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. |
|||
|
|
|
|
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:
|
||
|
|
|
|
Emulating reinterpret cast with static cast :
the above code is equivalent to following:
|
|||
|
|
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. |
|||
|
|
|
|
Not only can variables be declared in the init part of a
That allows for multiple variables of differing types. |
||||
|
|
|
Adding constraints to templates. |
|||
|
|
|
|
Primitive types have constructors. int i(3); works. |
|||
|
|
|
|
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. |
|||
|
|
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.
|
|||
|
|
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
|
|||
|
|
|
|
Many know of the
It helps decrypting C++ declarations greatly!
|
|||
|
|
|
|
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. :) |
|||
|
|
|
|
main() does not need a return value:
is the shortest valid C++ program. |
|||
|
|
You can template bitfields.
I have yet to come up with any purpose for this, but it sure as heck surprised me. |
|||
|
|
