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

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

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

if (x == y&1)
{
link|flag
vote up 2 vote down
#define true false
link|flag
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
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 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 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 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

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

Unnecessary use of threads.

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

Overloading * or ->

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

Some of the things described in this quiz

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

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

}
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 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 -1 vote down

Not calling delete or delete[]

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