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++?
|
82
|
|
|
|
|
|
You can put URIs into C++ source without error. For example:
|
||||||||||||||||||||
|
|
|
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 :-) |
||||||||||||
|
|
|
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 state-full. 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 ) |
||||
|
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
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). |
|||
|
|
C++ programmers prefer to avoid pointers because of the bugs that can be introduced. The coolest C++ I've ever seen though? Analog literals. |
|||
|
|
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... :-) |
||||||||||||||||||||
|
|
|
Oooh, I can come up with a list of pet hates instead:
On the plus side
|
||||
|
|
|
Not only can variables be declared in the init part of a
That allows for multiple variables of differing types. |
||||
|
|
|
I'm amazed at how many C++ programmers don't know this. |
|||
|
|
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.
MSN |
||||
|
|
|
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. |
|||
|
|
Hidden features:
|
|||
|
|
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 :) |
|||
|
|
Putting functions or variables in a nameless namespace deprecates the use of |
|||
|
|
|
|
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:
|
|||
|
|
|
|
I found this blog to be an amazing resource about the arcanes of C++ : C++ Truths. |
|||
|
|
|
|
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.
|
|||
|
|
Read a file into a vector of strings:
|
||||
|
|
|
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 |
|||
|
|
|
|
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 ;) |
|||
|
|
|
|
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 |
||||||||
|
|
|
There are a lot of "undefined behavior". You can learn how to avoid them reading good books and reading the standards. |
|||
|
|
|
|
I'm not sure about hidden, but there are some interesting 'tricks' that probably aren't obvious from just reading the spec. |
|||
|
|
|
|
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. An example is the boost lambda functions, which is interesting since C++ does not have lambda functions in the current standard. |
||||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
Many know of the
It helps decrypting C++ declarations greatly!
|
|||
|
|
