vote up 57 vote down star
96

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
3  
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 2 more comments

50 Answers

prev 1 2
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 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 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 '09 at 9:28
vote up 2 vote down

throw is an expression

link|flag
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 1 vote down
  • pointers to class methods
  • The "typename" keyword
link|flag
show 1 more comment
vote up 1 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

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

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

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

Adding constraints to templates.

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

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 -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 -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
3  
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 -1 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 -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.