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

By using C++.

Sorry, used it a lot, but this is the worst language ever. If you really really have to be low level, use C. If not, use a real OO language (one with Garbage Collection, C#, Java) or a dynamic language if you are higher level than that.

The only language I can name right now that I would not choose for any purpose is C++


Edit:

Programming in C++ it's virtually impossible to think in OO because you have to track GC. I've virtually never seen good OO c++ code. (It's also somewhat annoying to create new classes because of header files, so most C++ classes seem to be longer and manage more than one concern, another bad OO concept).

I've used C++ and still use it occasionally, but not for OO code, and would never choose it for a new project where the language wasn't set already. I've worked two embedded systems where Java did most of the work including a spectrum analyzer (pretty much an o-scope) where even the trace was drawn in Java.

My point was, C++ doesn't really offer any advantages (It's about twice as fast for the CPU usage, I can't recall the last time I was near 50% cpu usage on one app for more than a second), and has so many ways to shoot yourself in the foot that it's not even funny.

Actually there is another advantage--C++ is the last really hard language and it keeps the barrier to entrance higher. I don't know a lot of C++ programmers who don't understand the language, and many are excellent programmers--so (as opposed to Java, C++, VB and Ruby) C++ apps tend to be a bit more consistently good.

link|flag
1  
Maybe you should suggest that they implement a badge for getting a lot of downvotes. – Kip Oct 6 '08 at 16:06
show 28 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 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 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 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 5 vote down

Relying on default parameters in virtual functions in derived classes.

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

From my C++ days back in the 90s, I was always a fan of

MyType<MyOtherType<T>>

Hello right-shift !

link|flag
show 5 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 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 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 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 -2 vote down

You could write a firework launch system in C++ that launches fireworks automatically in time to a piece of loud classical music. Then accidentally stand in front of it with your foot in the way during the finale.

It would be spectacular.

Note (more detail as requested by TonJ): If you work on a system like this, I recommend you avoid try/catch semantics. Using a return for a firework that failed ignition is also a no-no. And, make sure any pointers are initialized to be away from any observers.

link|flag
show 2 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 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 1 vote down
int x = 7;
int y = 2;
float result = x / y;

You might think result would be 3.5, but it's 3!

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

If you have a a multithreaded design of any sophistication, and you feel like a few hours tracking down object lifecycle race conditions, try using raw pointers for object ownership.

Smart pointers don't make threads easy, but they certainly help.

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

Not understanding pointers is the quickest and easiest way to shoot yourself in the foot using C++.

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

The most spectacular way would be to use template driven meta programming. A simpler way would be to override operators and use them without specifying '(' ')'.

On a different note, modifying the header files without changing the .cpp files should also do the trick. Some call this incomplete coding.

link|flag
vote up -1 vote down

Not calling delete or delete[]

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

Overloading * or ->

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

Not having a virtual destructor on a base class.

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

I cut my teeth on assembly, then C, then C++, then C#. I think of C as a clean set of macros for an assembly language. Which I actually like, because I understand every nook and cranny of it. C++ opens up a ton more tricks, but everything in C is still also available. C# finally got wise to this, and even though it still looks very C-like, it blocks some low-level C-type constructs.

One of the thorniest problems I ran into on a huge C++ app turned out to be malloc/free versus new/delete. Anything that's malloced has to be freed, and anything that's newed has to be deleted. But the compiler can't launch flares if something was inadvertently mix-and-matched, so bizarre memory corruption problems can lurk for years. Good luck finding that in your debugging sessions or code reviews.

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