vote up 49 vote down star
83

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

You can template bitfields.

template <size_t X, size_t Y>
struct bitfield
{
    char left  : X;
    char right : Y;
};

I have yet to come up with any purpose for this, but it sure as heck surprised me.

link|flag
vote up 0 vote down

main() does not need a return value:

int main(){}

is the shortest valid C++ program.

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

I find recursive template instatiations pretty cool:

template<class int>
class foo;

template
class foo<0> {
    int* get<0>() { return array; }
    int* array;  
};

template<class int>
class foo<i> : public foo<i-1> {
    int* get<i>() { return array + 1; }  
};

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

link|flag
vote up 1 vote down

throw is an expression

link|flag
vote up 4 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 0 vote down

Member pointers and member pointer operator ->*

#include <stdio.h>
struct A { int d; int e() { return d; } };
int main() {
    A* a = new A();
    a->d = 8;
    printf("%d %d\n", a ->* &A::d, (a ->* &A::e)() );
    return 0;
}

For methods (a ->* &A::e)() is a bit like Function.call() from javascript

var f = A.e
f.call(a)

For members it's a bit like accessing with [] operator

a['d']
link|flag
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 3 vote down

It seems to me that only few people know about anonymous namespaces:

namespace {
   // Classes, methods or variables here.
}

It limits classes, methods or variables to the scope of the current file. They will not be callable from other files.

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

Primitive types have constructors.

int i(3);

works.

link|flag
vote up 0 vote down

Adding constraints to templates.

link|flag
vote up 21 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 0 vote down

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.

link|flag
vote up 0 vote down

Emulating reinterpret cast with static cast :

int var;
string *str = reinterpret_cast<string*>(&var);

the above code is equivalent to following:

int var;    
string *str = static_cast<string*>(static_cast<void*>(&var));
link|flag
show 7 more comments
vote up 0 vote down

Pay attention to difference between free function pointer and member function pointer initializations:

member function:

struct S
{
 void func(){};
};
int main(){
void (S::*pmf)()=&S::func;//  & is mandatory
}

and free function:

void func(int){}
int main(){
void (*pf)(int)=func; // & is unnecessary it can be &func as well; 
}

Thanks to this redundant &, you can add stream manipulators-which are free functions- in chain without it:

cout<<hex<<56; //otherwise you would have to write cout<<&hex<<56, not neat.
link|flag
vote up 0 vote down

Indirect Conversion Idiom:

Suppose you're designing a smart pointer class. In addition to overloading the operators * and ->, a smart pointer class usually defines a conversion operator to bool:

template <class T>
class Ptr
{
public:
 operator bool() const
 {
  return (rawptr ? true: false);
 }
//..more stuff
private:
 T * rawptr;
};

The conversion to bool enables clients to use smart pointers in expressions that require bool operands:

Ptr<int> ptr(new int);
if(ptr ) //calls operator bool()
 cout<<"int value is: "<<*ptr <<endl;
else
 cout<<"empty"<<endl;

Furthermore, the implicit conversion to bool is required in conditional declarations such as:

if (shared_ptr<X> px = dynamic_pointer_cast<X>(py))
{
 //we get here only of px isn't empty
}

Alas, this automatic conversion opens the gate to unwelcome surprises:

Ptr <int> p1;
Ptr <double> p2;

//surprise #1
cout<<"p1 + p2 = "<< p1+p2 <<endl; 
//prints 0, 1, or 2, although there isn't an overloaded operator+()

Ptr <File> pf;
Ptr <Query> pq; // Query and File are unrelated 

//surprise #2
if(pf==pq) //compares bool values, not pointers!

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.

link|flag
vote up -1 vote down
class Empty { 
    Empty() {}
};

namespace std { /* #1 extending std namespace is ok for your custom datatypes */
   /* #2 The following function has no arguments. 
      There is no 'unknown argument list' as we do
      in C.
   */
   void swap<YourType>(const T&, const T&) {} 
}

void my_function() { 
       /* cout << "whoa! an error\n"; #3 using is only valid in main */
}

int main() {
   using namespace std; /* #4 you can use using anywhere */
   cout << sizeof Empty << "\n"; /* #5 sizeof Empty != 0 */
   /* #6 falling off of main without an explicit return 0; */
}
link|flag
2  
No, extending std is absolutely not OK, and the standard explicitly forbids it (with one exception: overloads of swap). – Konrad Rudolph Feb 21 at 12:40
show 4 more comments
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 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 29 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 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 0 vote down

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:

Notice also that we've employed a two-argument version of operator delete rather than the usual one-argument version. This two-argument version is another "usual" version of member operator delete often employed by base classes that expect derived classes to inherit their operator delete implementation. The second argument will contain the size of the object being deleted—information that is often useful in implementing custom memory management.

link|flag
vote up 2 vote down

Defining functions having identical signatures in the same scope. such that:

template<>
void f<>(int*) { 
std::cout << "f(int *) specilization\n";
}

and

template<>
void f<>(int*) { 
std::cout << "f(int *) another specilization\n";
}

http://cpptruths.blogspot.com/2008/01/function-template-overload-resolution.html

link|flag
1  
+1 for obscurity, though you yourself are obscuring things by omitting the fact the above code needs 2 more function template declarations (1 at the start, 1 in between) to compile. – j_random_hacker Jan 22 at 9:28
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 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 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 90 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 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 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 10 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
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.