vote up 52 vote down star
87

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

1 2 next
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
4  
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 93 vote down

Most C++ programmers are familiar with the ternary operator:

x = (y < 0) ? 10 : 20;

However, they don't realize that it can be used as an lvalue:

(a == 0 ? a : b) = 1;

which is shorthand for

if (a == 0)
    a = 1;
else
    b = 1;

Use with caution :-)

link|flag
1  
You have to move your closing parenthesis: "(a == 0 ? a : b) = 1", otherwise, it compiles as "a == 0 ? a : (b = 1)". Note that parens around "a == 0" are not necessary. – P Daddy Jan 7 at 20:29
16  
Yikes. (a == 0 ? a : b) = (y < 0 ? 10 : 20); – Jasper Bekkers Jan 11 at 4:12
3  
Probably shouldn't even be a feature :) – Andrei Taranchenko Jan 26 at 15:05
show 3 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 51 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 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 31 vote down

One thing that's little known is that unions can be templates too:

template<typename From, typename To>
union union_cast {
    From from;
    To   to;

    union_cast(From from)
        :from(from) { }

    To getTo() const { return to; }
};

And they can have constructors and member functions too. Just nothing that has to do with inheritance (including virtual functions).

link|flag
show 2 more comments
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 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 27 vote down

Pointer arithmetics.

C++ programmers prefer to avoid pointers because of the bugs that can be introduced.

The coolest C++ I've ever seen though? Analog literals.

link|flag
show 4 more comments
vote up 23 vote down

Not only can variables be declared in the init part of a for loop, but also classes and functions.

for(struct { int a; float b; } loop = { 1, 2 }; ...; ...) {
    ...
}

That allows for multiple variables of differing types.

link|flag
6  
Nice to know that you can do it, but personally I'd really try to avoid doing anything like that. Mostly because it's difficult to read. – Sir Oddfellow Jul 10 at 21:24
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 at 13:25
show 5 more comments
vote up 17 vote down

map::operator[] creates entry if key is missing and returns reference to default-constructed entry value. So you can write:

map<int, string> m;
string& s = m[42]; // no need for map::find()
if (s.empty()) { // assuming we never store empty values in m
  s.assign(...);
}
cout << s;

I'm amazed at how many C++ programmers don't know this.

link|flag
1  
And on the opposite end you cannot use operator[] on a const map – dribeas Jan 3 at 15:22
4  
This is arguably more of a gotcha than a feature :-) – Nick Jul 15 at 22:26
1  
+1 for Nick, people can go insane if they don't know about .find(). – LiraNuna Sep 9 at 22:19
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 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 12 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 12 vote down

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:

if(int * p = getPointer()) {
    // do something
}

Some macros use that, for example to provide some "locked" scope like this:

struct MutexLocker { 
    MutexLocker(Mutex&);
    ~MutexLocker(); 
    operator bool() const { return false; } 
private:
    Mutex &m;
};

#define locked(mutex) if(MutexLocker const& lock = MutexLocker(mutex)) {} else 

void someCriticalPath() {
    locked(myLocker) { /* ... */ }
}

Also BOOST_FOREACH uses it under the hood. To complete this, it's not only possible in an if, but also in a switch:

switch(int value = getIt()) {
    // ...
}

and in a while loop:

while(SomeThing t = getSomeThing()) {
    // ...
}

(and also in a for condition). But i'm not too sure whether these are all that useful :)

link|flag
show 6 more comments
vote up 11 vote down

Array initialization in constructor. For example in a class if we have a array of int as:

class clName
{
  clName();
  int a[10];
};

We can initialize all elements in the array to its default (here all elements of array to zero) in the constructor as:

clName::clName() : a()
{
}
link|flag
vote up 10 vote down

Putting functions or variables in a nameless namespace deprecates the use of static to restrict them to file scope.

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 7 vote down

Read a file into a vector of strings:

 vector<string> V;
 copy(istream_iterator<string>(cin), istream_iterator<string>(),
     back_inserter(V));

istream_iterator

link|flag
5  
Or: vector<string> V((istream_iterator<string>(cin)), istream_iterator<string>); – UncleBens Sep 9 at 22:26
vote up 7 vote down

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

struct A {
protected:
    int a;
};

struct B : A {
    // error: can't access protected member
    static int get(A &x) { return x.a; }
};

struct C : A { };

That's forbidden: You and the compiler don't know what the reference actually points at. It could be a C object, in which case class B has no business and clue about its data. Such access is only granted if x is a reference to a derived class or one derived from it. And it could allow arbitrary piece of code to read any protected member by just making up a "throw-away" class that reads out members, for example of std::stack:

void f(std::stack<int> &s) {
    // now, let's decide to mess with that stack!
    struct pillager : std::stack<int> {
        static std::deque<int> &get(std::stack<int> &s) {
            // error: stack<int>::c is protected
            return s.c;
        }
    };

    // haha, now let's inspect the stack's middle elements!
    std::deque<int> &d = pillager::get(s);
}

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

struct A {
protected:
    int a;
};

struct B : A {
    // valid: *can* access protected member
    static int get(A &x) { return x.*(&B::a); }
};

struct C : A { };

And of course, it also works with the std::stack example.

void f(std::stack<int> &s) {
    // now, let's decide to mess with that stack!
    struct pillager : std::stack<int> {
        static std::deque<int> &get(std::stack<int> &s) {
            return s.*(pillager::c);
        }
    };

    // haha, now let's inspect the stack's middle elements!
    std::deque<int> &d = pillager::get(s);
}

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.

void f(std::stack<int> &s) {
    // now, let's decide to mess with that stack!
    struct pillager : std::stack<int> {
        using std::stack<int>::c;
    };

    // haha, now let's inspect the stack's middle elements!
    std::deque<int> &d = s.*(&pillager::c);
}
link|flag
show 1 more comment
vote up 6 vote down

Defining ordinary friend functions in class templates needs special attention:

template <typename T> 
class Creator { 
    friend void appear() {  // a new function ::appear(), but it doesn't 
        …                   // exist until Creator is instantiated 
    } 
};
Creator<void> miracle;  // ::appear() is created at this point 
Creator<double> oops;   // ERROR: ::appear() is created a second time!

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:

template <typename T> 
class Creator { 
    friend void feed(Creator<T>*){  // every T generates a different 
        …                           // function ::feed() 
    } 
}; 

Creator<void> one;     // generates ::feed(Creator<void>*) 
Creator<double> two;   // generates ::feed(Creator<double>*)

Disclaimer: I have pasted this section from C++ Templates: The Complete Guide / Section 8.4

link|flag
vote up 5 vote down

Many know of the identity / id metafunction, but there is a nice usecase for it for non-template cases: Ease writing declarations:

// void (*f)(); // same
id<void()>::type *f;

// void (*f(void(*p)()))(int); // same
id<void(int)>::type *f(id<void()>::type *p);

// int (*p)[2] = new int[10][2]; // same
id<int[2]>::type *p = new int[10][2];

// void (C::*p)(int) = 0; // same
id<void(int)>::type C::*p = 0;

It helps decrypting C++ declarations greatly!

// boost::identity is pretty much the same
template<typename T> 
struct id { typedef T type; };
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 4 vote down

One of the most interesting grammars of any programming languages. Three of these things belong together, and one is something altogether different...

SomeType t = u;
SomeType t(u);
SomeType t();
SomeType t;

All but the third one define a SomeType on the stack and initialize it (with u in the first two case, and the default constructor in the fourth. The third one is actually declaring a function that takes no parameters and returns a SomeType.

link|flag
1  
Yes, what a wonderful feature that is... – j_random_hacker Jan 22 at 9:30
1  
1st is implicit call of constructor, 2nd is explicit call. Look at the following code to see the difference: #include <iostream> class sss { public: explicit sss( int ) { std::cout << "int" << std::endl; }; sss( double ) { std::cout << "double" << std::endl; }; }; int main() { sss ddd( 7 ); // calls int constructor sss xxx = 7; // calls double constructor return 0; } – Kirill V. Lyadvinsky Jun 23 at 20:04
show 5 more comments
vote up 4 vote down

Primitive types have constructors.

int i(3);

works.

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

A dangerous secret is

Fred* f = new(ram) Fred(); http://www.parashift.com/c++-faq-lite/dtors.html#faq-11.10
f->~Fred();

My favorite secret I rarely see used:

class A
{
};

struct B
{
A a;
operator A&() { return a; }
};

void func(A a) { }

int main()
{
 A a, c;
 B b;
 a=c;
 func(b); //yeah baby
 a=b; //gotta love this
}
link|flag
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 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 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
1 2 next

Your Answer

Get an OpenID
or

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