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++?
|
87
|
|||||
|
|
|
Zeroing structs without memset:
Normalizing/wrapping angle- and time-values:
Assigning references:
Doing everything on a single line:
|
|||
|
|
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. |
|||
|
|
Defining functions having identical signatures in the same scope. such that:
and
http://cpptruths.blogspot.com/2008/01/function-template-overload-resolution.html |
||||
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
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. :) |
|||
|
|
|
|
You can template bitfields.
I have yet to come up with any purpose for this, but it sure as heck surprised me. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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:
|
||
|
|
|
|
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. |
|||
|
|
|
|
Adding constraints to templates. |
|||
|
|
|
|
Emulating reinterpret cast with static cast :
the above code is equivalent to following:
|
|||
|
|
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
|
|||
|
|
|
|
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]. |
|||
|
|
|
||||
|
|
|
main() does not need a return value:
is the shortest valid C++ program. |
|||
|
|
C++ is a standard, there shouldn't be any hidden features... |
|||
|
|
