vote up 37 vote down star
31

In 1986 or so, Bjarne Stroustrup famously said: "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."

What is, in your opinion, the most spectacular way to blow your leg off in C++? Points for originality, and for helpfulness.

flag
show 2 more comments

58 Answers

1 2 next
vote up 38 vote down

Attempting to call a pure virtual function from a constructor or destructor. Since the derived class object has not yet been constructed (or has already been destroyed), this will result in badness. The compiler will convert virtual function calls into static calls of the base class version's of the function when it can, but there is no base class version of a pure virtual function, and undefined behavior will result. This could happen if the call is indirect, say, by calling a non-virtual function which calls the virtual function.

link|flag
2  
WRONG : It's not undefined if there actually IS a base version of the function. And then it works perfectly as expected, even when called indirectly. Even if you don't use a vtable. The mechanism has to work the same: in Base::Base, calling a virtual foo will call Base::foo(). – MSalters Oct 7 '08 at 11:39
1  
to add to @MSalters' excellent correction, only if the function is declared pure, behavior is undefined. This is defined in 10.4/6 in the C++ Standard. – Johannes Schaub - litb Nov 19 at 11:32
show 3 more comments
vote up 37 vote down

Originality, eh? Well how about Multi-Dimensional Analog Literals

Tighten your seatbelt and click here

There is real code behind these (see bottom of post). I only wish I had an ounce of that much creativity.

Example:

  unsigned int c = ( o-----o
                     |     !
                     !     !
                     !     !
                     o-----o ).area;

  assert( c == (I-----I) * (I-------I) );
link|flag
2  
Very nice one. I'm going to use analog literals in my code from now on! :) – Eduardo León Feb 18 at 12:42
1  
Nice! I wonder was that programmer one day like "hey! I want to have some compilable 3D ascii graphics in my code"... :) – AareP Oct 3 at 18:32
show 2 more comments
vote up 28 vote down

Needing to change the signature of a base class virtual function and disconnecting all the derived class overrides without any complaints from the compiler.

And I used to think that C#'s insistence on 'virtual', 'overrides', 'new' modifiers was being pedantic ...

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

Overloading of operators in general, but particularly new, new[], delete, delete[], and [].

link|flag
3  
sidenote: my company has list types that overload [] so that they start at 1 instead of 0. they were written long ago by fortran gurus, and now they are pervasive in our code. gets really annoying when you have to juggle base-0 arrays and base-1 lists in the same code! – Kip Oct 6 '08 at 16:17
2  
Kip, that 1-based [] overload sounds like a candidate for thedailywtf.com :) – Jim Buck Oct 6 '08 at 17:09
1  
Kip, that 1-based[] overload is just hilarious, but I have to admit, its pretty creative. – Jose Vega Oct 6 '08 at 20:17
1  
This is like saying 'Driving a car is dangerous so don't drive a car'. Of course if done wrong it can get pretty bad but when done right it's quite useful and indeed a valid thing to do. – Andreas Magnusson Oct 7 '08 at 6:32
show 8 more comments
vote up 22 vote down

I've seen this a few times where someone used memset() inside the ctor to easily initialize all the class variables.

myClass::myClass()
{
   memset(this,0,sizeof (myClass));
}
link|flag
1  
@gbjbaanb: In C++ there really is no difference between structs and classes (except public vs private). So if you still use memset() on a struct, and someone adds a (member function, constructor, operator) to this struct; boom there goes your foot. – TonJ Oct 7 '08 at 13:06
show 6 more comments
vote up 21 vote down

I've initialized an array like this:

int *ip = new int(10);

Hijinks ensue when you try to use this "array" beyond index 0 (which is usually almost immediately). The problem is that the above code is the syntax to create a pointer to a new int initialized to the value 10. It only looks like the syntax for pointer to a new array of size 10.

link|flag
show 2 more comments
vote up 16 vote down

I love C++ for the flexibility that it offers, and with the arrival of libraries such as BOOST it is becoming easier to piece together a powerful application with most of the time spent concentrating on the business logic.

However, here are some common examples where code will compile but not do what was intended.

1) Overriding Functions

class Base {
  virtual void foo () const
  {
    // Default beahviour
  }
};

class Derived : public Base {
  virtual void foo ()
  {
    // Do something useful for Derived
  }
};

It was almost certainly not the intention of the author that 'foo' in the derived class does not override the 'foo' in the base. You have to make sure your testing is really up to scratch to make sure that you can detect that Derived::foo is not being called!

2) Operators that short-cut except when they don't:

class A {};
A foo (int * i)
{
  *i = 0;
}
bool operator && (int *, A const &);

// ... lots of space between declaration and usage

void bar (int * i)
{
  if (i && foo(i))
  {
  }
}

Others have mentioned operators, but there are 4 which are especially problematic. In the above example rather than having the usual "evaluate the first operand and if true then the second" what we actually have is a function call operator&&(i, foo(i)). The first argument i and the second foo(i). Both will be evaluated (in some unspecified order) and this will result in a null pointer dereference in foo. The other operators to watch out for are, logical or (||), comma (,) and unary &.

3) Class member initialization that doesn't initialize:

class B
{
public:
  B ();
};

class A
{
public:
  ~A();

private:
  B b;
  int i;
};

The above class the non-POD member i is not initialized by the default constructor for the class. The same applies if the constructor was written as:

  A ()
  {
  }

or

  A ()
    : b ()
  {
  }

Of course - what you need is some form of static analysis tool which will catch all of these niggling problems for you! ;)

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

Programming serious C++ before you understand it. Sadly it's reputation for being an experts only language is well deserved.

Please, please, please read Effective C++ before you touch production code.

link|flag
vote up 14 vote down

Not initializing a pointer and then using it later.

link|flag
4  
Sorry to be pedantic, but this is not specific to C++. – Max Howell Oct 21 '08 at 7:00
vote up 13 vote down

Here on SO, Joel Coehoorn wrote about this example:

  if ( blah(), 5) {
   //do something
  }

"Note that the , operator could be overloaded for the return type of the blah() function (which wasn't specified), making the result non-obvious."

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

It doesn't happen often, but I always find this hard to track down.

if (number = 5) {
    // code
}
link|flag
2  
This is not C++-specific. – Andreas Magnusson Oct 7 '08 at 6:47
show 8 more comments
vote up 13 vote down

Returning references to temporaries. Usually this happens when you accidentally copy-construct along the way. Something like:

string MyVal()
{
  return _val;
}

string& GetVal()
{
  return MyVal();
}
link|flag
vote up 13 vote down

In C/C++, if you start a numeric constant with a zero, it's interpreted as octal:

int a = 123; // Decimal 123
int b = 0123; // Octal 123, decimal 83

I've never seen this result in a bug, but once when I was hand-editing a large block of data for an array, I typed leading zeros for some of the constants just to pad them to length. If none of them had an 8 or 9 (which is invalid for octal), it would have compiled cleanly and definitely would have not worked right.

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

While this is not foot shooting, I flipped out when I saw a really experienced C++ programmer do this:

((SomeClass*)NULL)->SomeMethod();

Which is actually perfectly fine, as long as SomeMethod doesn't access the this pointer or call any member functions (which in this case it didn't).

Still, that kind of thing is pretty much GUARANTEED to blow the leg off the next programmer that modifies that class.

link|flag
1  
Makes you think why the creator of SomeMethod() didn't declare it static. This way, you'd call it as SomeClass::SomeMethod(), and all is well. – TonJ Oct 7 '08 at 7:01
3  
Nice job interview question: "You find the line 'if (this==NULL) return;' in some code. What could the writer of this line possibly have intended?" – TonJ Oct 18 '08 at 19:58
1  
Shouldn't it be static_cast<SomeClass*>(0)->SomeMethod(); – Nikolai Ruhe Sep 26 at 20:10
show 3 more comments
vote up 12 vote down

Accidentally instantiating an RAII object as a temporary, for example:

boost::mutex::scoped_lock(m_mutex);

instead of

boost::mutex::scoped_lock guard(m_mutex);

No errors, no warnings, just mysterious intermittent runtime errors.

link|flag
vote up 9 vote down

Not having a virtual destructor on a base class.

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

Overriding ::new() operator. You might have grand hopes of tracking memory leaks or logging fragmentation or whatever. It almost always turns south quickly.

link|flag
vote up 7 vote down

Something to blow the whole leg for sure, with std::map for example:

...
for ( pos = c.begin(); pos != c.end(); ++pos) {
  if ( pos->second == something) c.erase( pos);
}
...
link|flag
vote up 7 vote down

Using auto_ptr not knowing (or forgeting) that the assignment operator transfers ownership

void Foo(auto_ptr<string> val)  
{  
  std::cout << *val;    
}  

int main()  
{  
  auto_ptr<std::string> a (new std::string("abc"));  

  auto_ptr<std::string> b = a;  // a is erased !  

  Foo(b);  // b is erased also !!! (always use references in method signatures with auto_ptr)  
  ...
}
link|flag
1  
Do you know that auto_ptr will be deprecated in C++0x? There'll be a new "unique_ptr<T>" that makes use of new features of the language and does not have auto_ptr's problems. – TonJ Oct 7 '08 at 7:03
show 1 more comment
vote up 6 vote down

Casting a pointer to a type that something isn't. Then calling a virtual function on that type. Depending on how "lucky" you are there may be a function at that location in the vtable that has the same parameters. I've done this where the debugger was stepping through the wrong code. Totally perplexing. If you aren't so "lucky" then it will just crash with a corrupted stack depending on the calling conventions.

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

Violating the Principle of least astonishment. For example operator + should add things together. If you have it do subtraction it will really confuse people and cause them to make stupid mistakes. Or as Scott Meyers put is, do as the ints do.

Edit: the quote from Meyers is from Effective C++, in my copy of the 3rd edition it's in item 18 page 80. "Clients already know how types like int behave, so you should strive to have your types behave in the same way whenever reasonable...When in doubt, do as the ints do." Go read/re-read item 18 today, and be a better programmer!

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

Relying on default parameters in virtual functions in derived classes.

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

Modify a std::map while you have an active iterator on it. I spent 3 days debugging that once.

link|flag
1  
only a problem if you delete the item pointed to by that iterator, otherwise you're fine. – gbjbaanb Oct 6 '08 at 21:47
vote up 5 vote down

In a project that does not use namespaces, create a class named Thread with a method called run(). Then make the project use a shared library that, unbeknown to you, also has no namespaces and a class named Thread with a method named run().

No try to figure out that why when you create a thread in your code and pass a pointer to the Thread::run() method as the main body of the thread, your threads never get created.

Good times!

link|flag
vote up 5 vote down

Calling a function like this:

int result1 = f( i, i += 2 );

leads to unpredictable results. The function parameter evaluation order isn't specified in the C++ spec, so you don't know if the function will get the current value of i for the first parameter, or if it will be the value of i after i += 2 has been evaluated.

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

Using multiple inheritance is a good way ensure that you'll have problems.

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

Circular header dependencies.
If you're not familiar with the pattern of errors that arise from this situation you can go on for hours trying to figure out what the hell is going on.

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

Different versions of struct in different modules, either because struct is defined in two places, or because the definition has changed and one of the modules was not recompiled (dependencies error). This can cause some fun behavior, such as the value of a field being different inside and outside a function call (we saw it in this question).

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

This:

MyObject* DoSomethingNotSoClever()
{
  MyObject object;
  return &object;
}

Doh, object gets destructed and becomes invalid the moment this function returns. If the caller tries to access the returned pointer, they're accessing garbage. It may work for a while until at some time later everything will go bang.

link|flag
vote up 3 vote down

Obfuscation. Things like automatic constructors that do too much, overriding operators, throwing exceptions, etc. Even macros to some extent.

C's beauty is that you can look at a snippet of code and have a very good idea of what the assembly does. Java's (or C#'s) beauty is that you don't have to. C++ can be abused to become the worst of these two worlds -- code that needs to be understood at the level of assembly, but is opaque.

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.