vote up 7 vote down star
9

So i thought i start a thread here so we can collect common pitfalls in C++ so if some dude has a c++ crash or similar he can look here.

While there is already http://stackoverflow.com/questions/30373/what-c-pitfalls-should-i-avoid , it was more a problem question than a collection of pitfalls in C++, and it wasn't community. This is trying to fix it with as many pitfalls in c++ as possible.

Examples:

  1. delete on new[] returned pointer.
  2. static_cast downcast on a virtual base class
    Since there is a comment telling me this is allowed, i want to prove it wrong here. 5.2.9 p8:
    An rvalue of type “pointer to cv1 B”, where B is a class type, can be converted to an rvalue of type “pointer to cv2 D”, where D is a class derived (clause 10) from B, if a valid standard conversion from “pointer to D” to “pointer to B” exists (4.10), cv2 is the same cv-qualification as, or greater cv-qualification than, cv1, and B is not a virtual base class of D. The null pointer value (4.10) is converted to the null pointer value of the destination type. If the rvalue of type “pointer to cv1 B” points to a B that is actually a sub-object of an object of type D, the resulting pointer points to the enclosing object of type D. Otherwise, the result of the cast is undefined.
    You have to use dynamic_cast for this.
  3. taking the sizeof of a pointer instead of an array
flag
I for one think it is a good thing to try and collect the common knowledge and make SO the one stop shop for all your programming needs. Even though in this case it isn't in the form of a question, I still think it's a valid post. +1 to the "question" and if I could, -1 to the closing of it. – Andreas Magnusson Nov 11 '08 at 14:50
Yeah i thought this would be a good idea since it will provide beginners with some additional help – Johannes Schaub - litb Nov 11 '08 at 15:22
Re-Opening as the information found could be useful. – Martin York Nov 11 '08 at 16:24
1  
How is your question different from "Anyone out there have any other common pitfalls to avoid in C++?" Your explanation doesn't make sense - they're the same. This is exact duplicate - recommend keeping closed. – Adam Davis Nov 11 '08 at 20:50
1  
I think Konrad is right. Tho what sucks about that other thread is that it contains loads of book recommendations. This should be a collection of common pits&sols, and not a collection about books about c++. People will find it harder to actually find the solutions they look for. – Johannes Schaub - litb Nov 12 '08 at 20:24
show 5 more comments

closed as exact duplicate by Johannes Schaub - litb Nov 12 '08 at 20:35

9 Answers

vote up 6 vote down

Using C++ like C.
Having a create and release cycle in the code.

In C++ this is not exception safe and thus the release may not be executed. In C++ we use RAII to solve this problem.

All resources that have a manual create and release should be wrapped in an object so these actions are done in the constructor/destructor.

// C Code
void myFunc()
{
    Plop*   plop = createMyPlopResource();

    // Use the plop

    releaseMyPlopResource(plop);
}

In C++ This should be wrapped in an object:

// C++
class PlopResource
{
    public:
        PlopResource()
        {
            mPlop=createMyPlopResource();
            // handle exceptions and errors.
        }
        ~PlopResource()
        {
             releaseMyPlopResource(mPlop);
        }
    private:
        Plop*  mPlop;
 };

void myFunc()
{
    PlopResource  plop;

    // Use the plop
    // Exception safe release on exit.
}
link|flag
i'm not sure whether we should add it. but maybe we should make it noncopyable/nonassignable? – Johannes Schaub - litb Nov 11 '08 at 17:20
vote up 1 vote down

Always check a pointer before you dereference it. In C, you could usually count on a crash at the point where you dereference a bad pointer; in C++, you can create an invalid reference which will crash at a spot far removed from the source of the problem.

class SomeClass
{
    ...
    void DoSomething()
    {
        ++counter;    // crash here!
    }
    int counter;
};

void Foo(SomeClass & ref)
{
    ...
    ref.DoSomething();    // if DoSomething is virtual, you might crash here
    ...
}

void Bar(SomeClass * ptr)
{
    Foo(*ptr);    // if ptr is NULL, you have created an invalid reference
                  // which probably WILL NOT crash here
}
link|flag
Checking for NULL does not help much. A pointer may have a non-null value and still point to a deleted or otherwise invalid object. – Nemanja Trifunovic Nov 11 '08 at 20:46
True, but in my experience a NULL pointer is more common than the other kinds of invalid pointers. Maybe that's because I make a habit of NULLing my pointers after deleting them. – Mark Ransom Nov 11 '08 at 23:30
This is part of your error-handling strategy. I'ld say, avoid NULL pointer checking in the core code (rather assert), but guarantee you don't pass in invalid values (design by contract). – xtofl Nov 12 '08 at 19:45
vote up 0 vote down

Intention is (x == 10)

if(x = 10){
    //do something
}

I thought I would never make this mistake myself but I actually did it recently.

link|flag
1  
Pretty much any compiler these days will issue a warning for this – Adam Rosenfield Nov 11 '08 at 20:39
doing a constant == to a variable will help spot these mistakes, say if( 10 = x ), the compiler will error out on that – PiNoYBoY82 Nov 12 '08 at 5:41
vote up 1 vote down

Keep the name spaces straight (including struct, class, namespace, and using). That's my number-one frustration when the program just doesn't compile.

link|flag
vote up 1 vote down

To mess up, use straight pointers a lot. Instead, use RAII for almost anything, making sure of course that you use the right smart pointers. If you write "delete" anywhere outside a handle or pointer-type class, you're very likely doing it wrong.

link|flag
vote up 1 vote down

blizpasta, that's a huge one I see alot...

uninitialized variables are a huge mistake that students of mine make. Alot of java folk forget that just saying "int counter" doesn't set counter to 0. Since you have to define variables in the h file (And initialize them in the constructor/setup of an object) it's easy to forget.

off by one errors on for loops / array access.

not properly cleaning object code when voodoo starts.

link|flag
vote up 0 vote down

This is an exact duplicate of this question.

link|flag
Thanks for pointing this out. – Konrad Rudolph Nov 11 '08 at 20:40
vote up 1 vote down

Edit: I've rewritten this posting. I had a wrong definition of “virtual base class” in mind when writing my original definition.


  • static_cast downcast on a virtual base class

Thanks for your edit citing the standard. Now about my misconception: I though that A in the following was a virtual base class when in fact it's not; it's, according to 10.3.1, a polymorphic class. Using static_cast here seems to be fine.

struct B { virtual ~B() {} };

struct D : B { };

In summary, yes, this is a dangerous pitfall. Thanks for pointing it out.

link|flag
see my enhanced question above – Johannes Schaub - litb Nov 12 '08 at 5:01
vote up 1 vote down

Forget to define a base class destructor virtual. This means that calling delete on a Base* won't end up destructing the Derived part.

link|flag

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