up vote 43 down vote favorite
36
share [g+] share [fb]

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.

link|improve this question
2  
Man I hate that questions like this get closed. This contains my favorit discussion ever on SO (replies to my answer). I'll vote to reopen even though it won't take. – Bill K Jan 17 '11 at 22:55
show 2 more comments
feedback

closed as not constructive by Jeremy Banks ʬʬʬ, Bill the Lizard Sep 20 '11 at 1:47

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

58 Answers

1 2

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|improve this answer
feedback

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|improve this answer
1  
I don't remember if I've ever grepped for 'operator\*'. – Windows programmer May 11 '09 at 4:06
feedback

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

if (x == y&1)
{
link|improve this answer
feedback

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|improve this answer
feedback
delete this;

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

link|improve this answer
2  
delete this has legitimate uses, I don't see anything particularly painful about it. Can you elaborate? – DrPizza Oct 16 '08 at 23:05
show 1 more comment
feedback
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|improve this answer
feedback

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

MyType<MyOtherType<T>>

Hello right-shift !

link|improve this answer
show 5 more comments
feedback

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|improve this answer
feedback

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

link|improve this answer
1  
How is this specific to C++ and not C? – Max Howell Oct 21 '08 at 7:05
show 1 more comment
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
1  
Well der's your problem. Suggest someone with the rep adding advice here. "huge C++ app" + "malloc/free"? 1) malloc+free should be banished in C++ apps. 2) use smart pointers. – Aaron Oct 7 '08 at 6:13
1  
2) Use smart pointers, or make sure to free the memory in the destructor. – TonJ Oct 10 '08 at 19:44
feedback
int x = 7;
int y = 2;
float result = x / y;

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

link|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

Unnecessary use of threads.

link|improve this answer
show 1 more comment
feedback
static void MyInterruptServiceHandler(/* ... */)
{
    SomeObject p; // allocates memory in the constructor
    // whoops!  There goes my heap!
}
link|improve this answer
feedback
while (1) {

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

}
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
1  
I'll upvote you, but please add more detail, like object-oriented rockets with a Rocket Acquisition Is Ignition design pattern, or exothermal template functions. – TonJ Oct 7 '08 at 8:12
show 1 more comment
feedback

Overloading * or ->

link|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Not calling delete or delete[]

link|improve this answer
1  
Couldn't agree less. I use RAII classes or GC for virtually all my memory allocations; if I have to call delete or delete[], it's usually because I'm doing something wrong. – DrPizza Oct 16 '08 at 23:03
feedback

An infinite loop :P

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

link|improve this answer
show 1 more comment
feedback

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|improve this answer
11  
Maybe you should suggest that they implement a badge for getting a lot of downvotes. – Kip Oct 6 '08 at 16:06
6  
@Kip, I agree with you there. It would be something like "Blasphemy" for 20 or more down votes. :) – epochwolf Oct 6 '08 at 16:08
5  
@epochwolf: "Douchebag" for 50 or more downvotes. :) – Kip Oct 6 '08 at 16:11
7  
This is the most spectacular way to shoot yourself in the foot with a comment. – Ates Goral Oct 6 '08 at 16:33
3  
@BillK: your comments show you don't really grok C++. Don't need garbage collection if you use RAII. Create new classes because of header files? WTF! Something I hate from Java is its insistence on one class==one file! "Never seen good OO C++ code" and "apps a bit better" - flagrant contradiction? – Joe Pineda Oct 6 '08 at 18:28
show 37 more comments
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.