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

Let's see, some interesting things you can do.

Non-explicit type conversions, including constructors. If your class Foo can be converted into a Bar, like Bar::Bar(Foo f), then any function that works on a Bar will work on a Foo, not necessarily correctly. Something like explicit Bar::Bar(Foo f) will work much better.

Overloaded functions that do different conceptual things, depending on the type of the operands. A function Draw(...) that put images on the screen for most things but deployed a gun when used on another thing would be an example.

Similarly, operators that do non-obvious things. operator+() works fine for adding ints and floats and other sorts of numbers or vectors or whatever, or for concatenating strings, but if you use it for anything else, you're setting yourself up for trouble. A related case is turning short-circuit operators into functions, such as operator&&(), which will now evaluate both its operands rather than the first and then possibly the second.

link|flag
vote up 0 vote down

If you go above or below the size of your arrays, then C/C++ will access different things in memory. For example the following code will replace the value of a variable in outside the function.

#include <stdio.h>
#include <stdlib.h>

void f(int x) {
    int a[10];
    printf("a[20] is at address 0x%x\n",(int)&a[20]);

    a[20] = -1; /* change variable answer in main (gcc4.3.2/linux/i86)  */
}

int main(void) {
    int answer = 42;
        printf("answer is at address 0x%x\n",(int)&answer);

    f(5);
    printf("answer=%d\n", answer);
    return 0;
}

Even worse is the following, which will change the place the function returns to, to skip a password checking if statement:

#include <stdio.h>
#include <stdlib.h>

int check_password() {
    char buffer[8];
    printf("Enter password: ");
    gets(buffer);
    int i;
    int * p = (int *) & buffer[20];
        printf("*p is %x\n",*p);
        *p += 4; 
    /* change function's return address on stack (gcc 4.3.2/Linux/i86) */
    return strcmp(buffer, "secret") == 0;
}

int main(int argc, char *argv[]) {
    int k = 7;	
    printf("size of address %d\n",sizeof(int *));
    printf("function main is at address 0x%x\n", &main);
    if (check_password()) {
    	printf("Authenticated\n");
    } else {
    	printf("Password Incorrect\n");
    }
    printf ("bye\n");
}
link|flag
vote up 1 vote down

Returning pointers to local variables:

const char* getStr(...)
{
  char buf[128];
  return buf;
}

I hate that c++ allows you to do stuff like that without any kind of warning. It is the only thing that needs fixing in c++ - error reporting and warnings.. C++ was apparently programmed by people with mentality "He who make mistakes must suffer"...

link|flag
vote up 2 vote down

Operator overloading can be pretty evil. Say you overloaded the operator '*' and you need to modify the implementation/contract. Now, being a good coder, you'll go and check all the uses of the overloaded operator.

Ever tried grep'ing for '*' over a large codebase?

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

Non-const references as arguments are evil as it's non-obvious (from just reading the code at the callsite) that an argument is potentially being modified.

E.g., given:

void do_something(int& foo);

and from reading code at the callsite:

int x = 5;
do_something(x);

it's non-obvious that x could be modified by do_something().

link|flag
vote up 0 vote down
while (1) {

// lots of condition tests that don't cover every condition.

}
link|flag
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 2 vote down
MyObject* A = NULL;
MyObject* B = NULL;
if (A == B == NULL)
{
	//do something
}
else
{
              //do something else
}

You'd wish this if-statement would be the equivalent of saying

 if ((A==NULL) && (B == NULL))

but you'd be wrong.

link|flag
vote up -1 vote down

An infinite loop :P

Also, leaving orphan nodes is a pretty rocking way to hurt yourself.

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 1 vote down
static void MyInterruptServiceHandler(/* ... */)
{
    SomeObject p; // allocates memory in the constructor
    // whoops!  There goes my heap!
}
link|flag
vote up 2 vote down

Using default values for fuction void Func(int i = 0, bool x = false){...} which is only declared in the header file.

Then trying to track the place where you get false from the 2nd parameter.

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

Some of the things described in this quiz

link|flag
vote up 1 vote down

Unnecessary use of threads.

link|flag
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 2 vote down
delete this;

I can't begin to describe the pain and suffering caused by that one line of code.

link|flag
show 2 more comments
vote up 2 vote down
#define true false
link|flag
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 3 vote down
the dreaded trailing semicolon after a for loop:

for(i=0;i<1000;++i);
    print("i=%d",i);

output is 'i=1000'
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
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 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 2 vote down

Forgetting that == has precedence over bitwise operators like & and |. As in:

if (x == y&1)
{
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 1 vote down

Using raw pointers without documenting ownership. Two typical cases are having a function that returns a pointer without documenting whether the caller takes ownership of it, or having a function that takes a pointer as a parameter without documenting whether it takes ownership of the pointer. (The entity that has "ownership" of a pointer is responsible for deleting it.)

Using smart pointers is a good way to avoid these problems.

link|flag
show 1 more comment
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 1 vote down

Creating a buffer overrun vulnerability.

There are few things worse than opening up a code execution exploit to any user who can input data into your program.

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