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++?
feedback
|
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. More info: FAQ(/faq).closed as not a real question by Roger Pate, dmckee, Neil Butterworth, sth, bmargulies Jul 14 '10 at 1:41
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.
|
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 :-) | |||||||||||||||||||||
feedback
|
|
You can put URIs into C++ source without error. For example:
| |||||||||||||||||||||
feedback
|
C++ programmers prefer to avoid pointers because of the bugs that can be introduced. The coolest C++ I've ever seen though? Analog literals. | |||||||||||||||||||||
feedback
|
|
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. Most of those facilities are not build-in features of the language, but library-based ones. The most important is the RAII, often ignored for years by C++ developers coming from the C world. Operator overloading 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. The use of exception is often difficult, but with some work, can produce really robust code through exception safety 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). The most famous of "hidden" feature of C++ is template metaprogramming, 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. Other make uses of the multiple paradigm to produce "ways of programming" outside of C++'s ancestor, that is, C. By using functors, you can simulate functions, with the additional type-safety and being stateful. Using the command pattern, you can delay code execution. Most other design patterns can be easily and efficiently implemented in C++ to produce alternative coding styles not supposed to be inside the list of "official C++ paradigms". By using templates, 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 dynamic polymorphism have its static version in C++: the CRTP. I have found that most "Effective C++"-type books from Scott Meyers or "Exceptional C++"-type books from Herb Sutter to be both easy to read, and quite treasures of info on known and less known features of C++. Among my preferred is one that should make the hair of any Java programmer rise from horror: In C++, 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 (i.e. class method), because:
This never fails to surprise even experienced developers. (Source: Among others, Herb Sutter's online Guru of the Week #84: http://www.gotw.ca/gotw/084.htm ) | |||||||||||||
feedback
|
|
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.
| |||||||||||||
feedback
|
|
Not only can variables be declared in the init part of a
That allows for multiple variables of differing types. | |||||||||||||||||||||
feedback
|
|
The array operator is associative. 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] You didn't say useful... :-) | |||||||||||||||||||||
feedback
|
C++ is a multi-paradigm language, you can bet your last money on there being hidden features. 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. | |||||
feedback
|
|
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). | |||||||||
feedback
|
|
Another hidden feature that doesn't work in C is the functionality of the unary Converting an Enumeration to an integer
And your enumerator value that previously had its enumeration type now has the perfect integer type that can fit its value. Manually, you would hardly know that type! This is needed for example when you want to implement an overloaded operator for your enumeration. Get the value out of a variableYou have to use a class that uses an in-class static initializer without an out of class definition, but sometimes it fails to link? The operator may help to create a temporary without making assumptins or dependencies on its type
Decay an array to a pointerDo you want to pass two pointers to a function, but it just won't work? The operator may help
| |||||||||||||
feedback
|
|
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.
| |||||||||||||||||||||
feedback
|
|
A nice feature that isn't used often is the function-wide try-catch block:
Main usage would be to translate exception to other exception class and rethrow, or to translate between exceptions and return-based error code handling. | |||||||||
feedback
|
|
Many know of the
It helps decrypting C++ declarations greatly!
| ||||
|
feedback
|
|
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 :) | |||||||||||||
feedback
|
|
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:
| |||||
feedback
|
Preventing comma operator from calling operator overloadsSometimes you make valid use of the comma operator, but you want to ensure that no user defined comma operator gets into the way, because for instance you rely on sequence points between the left and right side or want to make sure nothing interferes with the desired action. This is where
Ignore the place holders i put for the condition and code. What's important is the | |||||
feedback
|
|
Oooh, I can come up with a list of pet hates instead:
On the plus side
| |||||||||||||||||||||
feedback
|
|
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.
| |||||
feedback
|
|
Another hidden feature is that you can call class objects that can be converted to function pointers or references. Overload resolution is done on the result of them, and arguments are perfectly forwarded.
These are called "surrogate call functions". | |||||||||
feedback
|
|
Hidden features:
| |||||
feedback
|
|
I'm amazed at how many C++ programmers don't know this. | |||||||||||||||||||||
feedback
|
|
Putting functions or variables in a nameless namespace deprecates the use of | ||||
|
feedback
|
|
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 | |||||
feedback
|
void functions can return void valuesLittle known, but the following code is fine
Aswell as the following weird looking one
Knowing about this, you can take advantage in some areas. One example:
| ||||
|
feedback
|
|
Read a file into a vector of strings:
| |||||||||||||
feedback
|
|
One of the most interesting grammars of any programming languages. Three of these things belong together, and two are something altogether different...
All but the third and fifth define a | |||||||||||||
feedback
|
|
You can template bitfields.
I have yet to come up with any purpose for this, but it sure as heck surprised me. | ||||
|
feedback
|
|
The dominance rule is useful, but little known. It says that even if in a non-unique path through a base-class lattice, name-lookup for a partially hidden member is unique if the member belongs to a virtual base-class:
I've used this to implement alignment-support that automatically figures out the strictest alignment by means of the dominance rule. This does not only apply to virtual functions, but also to typedef names, static/non-virtual members and anything else. I've seen it used to implement overwritable traits in meta-programs. | |||||
feedback
|
|
Getting rid of forward declarations:
Writing switch-statements with ?: operators:
Doing everything on a single line:
Zeroing structs without memset:
Normalizing/wrapping angle- and time-values:
Assigning references:
| |||||||||||||
feedback
|
|
The ternary conditional operator In other words, one can write the following pefrectly valid C++ expressions using the
BTW, the fact that throw expression is actually an expression (of type
although there's not much point in doing it this way (maybe in some generic template code this might come handy). | ||||
|
feedback
|