vote up 52 vote down star
88

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++?

flag
2  
By "hidden" do you mean things that are in the spec that you don't know yet? – Nathan Fellman Sep 16 '08 at 18:37
show 1 more comment

50 Answers

prev 1 2
vote up 11 vote down

Hidden features:

  1. Pure virtual functions can have implementation.
  2. Exception specifications and std::bad_exception. Read more: http://cpptruths.blogspot.com/2007/05/use-of-stdbadexception.html

  3. function try blocks

  4. The template keyword in disambiguating typedefs in a class template. If the name of a member template specialization appears after a ., ->, or :: operator, and that name has explicitly qualified template parameters, prefix the member template name with the keyword template. Read more: http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Policy_Clone

  5. function parameter defaults can be changed at runtime. Read more: http://cpptruths.blogspot.com/2005/07/changing-c-function-default-arguments.html

  6. A[i] works as good as i[A]

link|flag
show 5 more comments
vote up 13 vote down

A nice feature that isn't used often is the function-wide try-catch block:

int Function()
try
{
   // do something here
   return 42;
}
catch(...)
{
   return -1;
}

Main usage would be to translate exception to other exception class and rethrow, or to translate between exceptions and return-based error code handling.

link|flag
show 7 more comments
vote up 3 vote down

Zeroing structs without memset:

FStruct s = {0};

Normalizing/wrapping angle- and time-values:

int angle = (short)((+180+30)*65536/360) * 360/65536; //==-150

Assigning references:

struct ref
{
   int& r;
   ref(int& r):r(r){}
};
int b;
ref a(b);
int c;
*(int**)&a = &c;

Doing everything on a single line:

void a();
int b();
float c = (a(),b(),1.0f);
link|flag
show 4 more comments
vote up -1 vote down

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].

link|flag
show 1 more comment
vote up 111 vote down

You can put URIs into C++ source without error. For example:

void foo() {
    http://stackoverflow.com/
    int bar = 4;

    ...
}
link|flag
2  
But only one per function, i suspect? :) – Constantin Oct 5 '08 at 17:40
5  
bad-dum-dum tisssh! – Paul Nathan Oct 19 '08 at 18:19
2  
Just don't try adding more than one per source file :P – X-Istence Oct 26 '08 at 15:21
16  
@jpoh: http followed by a colon becomes a "label" which you use in a goto statement later. you get that warning from your compiler because it's not used in any goto statement in the above example. – utku_karatas Nov 4 '08 at 17:07
5  
For shame! SO highlighting doesn't recognise gopher! – Earwicker Mar 27 at 21:29
show 6 more comments
vote up 1 vote down
  • pointers to class methods
  • The "typename" keyword
link|flag
show 1 more comment
vote up 52 vote down

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.

namespace fs = boost::filesystem;

fs::path myPath( strPath, fs::native );
link|flag
vote up 20 vote down

Oooh, I can come up with a list of pet hates instead:

  • Destructors need to be virtual if you intend use polymorphically
  • Sometimes members are initialized by default, sometimes they aren't
  • Local clases can't be used as template parameters (makes them less useful)
  • exception specifiers: look useful, but aren't
  • function overloads hide base class functions with different signatures.
  • no useful standardisation on internationalisation (portable standard wide charset, anyone? We'll have to wait until C++0x)

On the plus side

  • hidden feature: function try blocks. Unfortunately I haven't found a use for it. Yes I know why they added it, but you have to rethrow in a constructor which makes it pointless.
  • It's worth looking carefully at the STL guarantees about iterator validity after container modification, which can let you make some slightly nicer loops.
  • Boost - it's hardly a secret but it's worth using.
  • Return value optimisation (not obvious, but it's specifically allowed by the standard)
  • Functors aka function objects aka operator(). This is used extensively by the STL. not really a secret, but is a nifty side effect of operator overloading and templates.
link|flag
3  
Destructors need to be virtual only if you intend to destroy polymorphically, which is a little subtly different from the first point. – dribeas Jan 3 '09 at 13:25
show 5 more comments
vote up 62 vote down

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:

  • In C++, a class' interface is both its member-functions and the non-member functions in the same namespace

  • non-friend non-member functions have no privileged access to the class internal. As such, using a member function over a non-member non-friend one will weaken the class' encapsulation.

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 )

link|flag
1  
+1 for mentioning the free functions. :-) – Konrad Rudolph Sep 17 '08 at 9:35
show 8 more comments
vote up 3 vote down

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.

link|flag
show 1 more comment
vote up 27 vote down

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... :-)

link|flag
2  
Actually, when using this trick, you should really pay attention to what type you are using. A[8] is actually the 8th A while 8[A] is the Ath integer starting at address 8. If A is a byte, you have a bug. – Vincent Robert Sep 17 '08 at 0:03
8  
you mean "commutative" where you say "associative"? – DarenW Sep 17 '08 at 0:15
5  
Vincent, you're wrong. The type of A doesn't matter at all. For example, if A were a char*, the code would still be valid. – Konrad Rudolph Sep 17 '08 at 9:33
2  
Beware that A must be a pointer, and not a class overloading operator[]. – dribeas Jan 3 '09 at 15:17
4  
Vincent, in this there has to be one integral type and one pointer type, and neither C nor C++ cares which one goes first. – David Thornley Jan 7 at 21:10
vote up 17 vote down

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.

const MyClass& x = MyClass(); // temporary exists as long as x is in scope

MSN

link|flag
1  
Can you elaborate? As is you're just teasing ;) – Joseph Garvin Jun 21 at 21:55
show 4 more comments
vote up 3 vote down

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.

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.

link|flag
2  
Template metaprogramming isn't hidden anymore because it was so useful. However, it's hidden in the way that the feature is not designed into C++ but rather turned up by coincidence. – Konrad Rudolph Sep 17 '08 at 9:30
vote up 1 vote down

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.

link|flag
vote up 4 vote down

There are a lot of "undefined behavior". You can learn how to avoid them reading good books and reading the standards.

link|flag
vote up 4 vote down

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 ;)

link|flag
vote up 8 vote down

I found this blog to be an amazing resource about the arcanes of C++ : C++ Truths.

link|flag
vote up 36 vote down

C++ is a standard, there shouldn't be any hidden features...

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.

link|flag
show 1 more comment
vote up 3 vote down

I'm not sure about hidden, but there are some interesting 'tricks' that probably aren't obvious from just reading the spec.

link|flag
vote up -7 vote down

C++ is a standard, there shouldn't be any hidden features...

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.