vote up 31 vote down star
37

I remember first learning about vectors in the STL and after some time, I wanted to use a vector of bools for one of my projects. After seeing some strange behavior and doing some research, I learned that a vector of bools is not really a vector of bools.

Anyone out there have any other common pitfalls to avoid in C++?

flag

60% accept rate
4  
I thought C++ is the pitfall you should avoid. – Cheery Nov 22 '08 at 19:07

20 Answers

vote up 48 vote down check

A short list might be:

  • Avoid memory leaks through use shared pointers to manage memory allocation and cleanup
  • Use the Resource Acquisition is Initialization (RAII) idiom to manage resource cleanup - especially in the presence of exceptions
  • Avoid calling virtual functions in constructors
  • Employ minimalist coding techniques where possible - for example declaring variables only when needed, scoping variables, early-out design where possible.
  • Truly understand the exception handling in your code - both with regard to exceptions you throw, as well as ones thrown by classes you may be using indirectly. This is especially important in the presence of templates.

RAII, shared pointers and minimalist coding are of course not specific to C++, but they help avoid problems that do frequently crop up when developing in the language.

Some excellent books on this subject are:

  • Effective C++ - Scott Meyers
  • More Effective C++ - Scott Meyers
  • C++ Coding Standards - Sutter & Alexandrescu
  • C++ FAQs - Cline

Reading these books has helped me more than anything else to avoid the kind of pitfalls you are asking about.

link|flag
you have specified the correct and best books that i was looking for. :) – mahesh Dec 11 '08 at 5:20
vote up 0 vote down

I spent many years doing C++ dev. I wrote a quick summary of problems I had with it years ago. Standards compliant compilers are not really a problem anymore, but I suspect the other pitfalls outlined are still valid.

link|flag
vote up 0 vote down

This essay/article is very useful, it talks avoid avoiding pitfalls and good practices:

Pointers, references and Values

You can browse the whole site too, which contains programming tips, mainly for C++. I Hope you find it useful.

link|flag
vote up 15 vote down

Pitfalls in decreasing order of their importance

First of all, you should visit the award winning C++ FAQ Light, it has many good answers to pitfalls. If you have further questions, visit ##c++ on irc.freenode.org in IRC, we are glad to help you, if we can. Note all the following pitfalls are originally written. They are not just copied from random sources.


delete[] on new, delete on new[]

Solution: Doing the above yields to undefined behavior: Everything could happen. Understand your code and what it does, and always delete[] what you new[], and delete what you new, then that won't happen.

Exception:

typedef T type[N]; T * pT = new type; delete[] pT;

You need to delete[] even though you new, since you new'ed an array. So if you are working with typedef, take special care.


Calling a virtual function in a constructor or destructor

Solution: Calling a virtual function won't call the overriding functions in the derived classes. Calling a pure virtual function in a constructor or desctructor is undefined behavior.


Calling delete or delete[] on an already deleted pointer

Solution: Assign 0 to every pointer you delete. Calling delete or delete[] on a null-pointer does nothing.


Taking the sizeof of a pointer, when the number of elements of an 'array' is to be calculated.

Solution: Pass the number of elements alongside the pointer when you need to pass an array as a pointer into a function. Use the function proposed here if you take the sizeof of an array that is supposed to be really an array.


Using an array as if it were a pointer. Thus, using T ** for a two dimentional array.

Solution: See here for why they are different and how you handle them.


Writing to a string literal: char * c = "hello"; *c = 'B';

Solution: Allocate an array that is initialized from the data of the string literal, then you can write to it:

char c[] = "hello"; *c = 'B';

Writing to a string literal is undefined behavior. Anyway, the above conversion from a string literal to char * is deprecated. So compilers will probably warn if you increase the warning level.


Creating resources, then forgetting to free them when something throws.

Solution: Use smart pointers like auto_ptr as pointed out by other answers.


Modifying an object twice like in this example: i = ++i;

Solution: The above was supposed to assign to i the value of i+1. But what it does is not defined. Instead of incrementing i and assigning the result, it changes i on the right side aswell. Changing an object between two sequence points is undefined behavior. Sequence points include ||, &&, comma-operator, semicolon and

link|flag
1  
a[i] = ++i; //reading a variable twice which is modified leads to undefined behavior ...you can add this also if u wish – yesraaj Aug 29 at 15:18
+1, many good points. The one about mixing typedef and delete[] was totally new to me! Yet another corner case to remember... :( – j_random_hacker Aug 30 at 10:32
vote up -1 vote down
#include <boost/shared_ptr.hpp>
class A {
public:
  void nuke() {
     boost::shared_ptr<A> (this);
  }
};

int main(int argc, char** argv) {
  A a;
  a.nuke();
  return(0);
}
link|flag
2  
Ones inability to use boost::shared_ptr is hardly a pitfall of the language. – 0xC0DEFACE Jun 27 at 1:55
+1. Though the shared_ptr docs state that this usage is not supported (and provide a workaround, enable_shared_from_this), this is a common use-case, and it's not immediately obvious that the above code will fail. It even appears to play by the rule of "immediately wrap any raw pointer in a shared_ptr". A genuine pitfall IMHO. – j_random_hacker Aug 30 at 10:49
vote up 1 vote down
  1. Not reading C++ FAQ Lite. It explains many bad (and good!) practices.
  2. Not Using Boost (tm). You'll save yourself a lot of frustration by taking advantage of Boost where possible.
link|flag
vote up 1 vote down

Avoid Pseudo-Classes and Quasi-Classes...overdesign basically.

link|flag
vote up 5 vote down

Not really a specific tip, but a general guideline: check your sources. C++ is an old language, and it has changed a lot over the years. Best practices have changed with it, but unfortunately there's still a lot of old information out there. There have been some very good book recommendations on here - I can second buying every one of Scott Meyers C++ books. Become familiar with Boost and with the coding styles used in Boost - the people involved with that project are on the cutting edge of C++ design.

Do not reinvent the wheel. Become familiar with the STL and Boost, and use their facilities whenever possible rolling your own. In particular, use STL strings and collections unless you have a very, very good reason not to. Get to know auto_ptr and the Boost smart pointers library very well, understand under which circumstances each type of smart pointer is intended to be used, and then use smart pointers everywhere you might otherwise have used raw pointers. Your code will be just as efficient and a lot less prone to memory leaks.

Use static_cast, dynamic_cast, const_cast, and reinterpret_cast instead of C-style casts. Unlike C-style casts they will let you know if you are really asking for a different type of cast than you think you are asking for. And they stand out viisually, alerting the reader that a cast is taking place.

link|flag
vote up 12 vote down

Brian has a great list: I'd add "Always mark single argument constructors explicit (except in those rare cases you want automatic casting)."

link|flag
vote up 2 vote down

Be careful when using smart pointers and container classes.

link|flag
Question for answer: What's wrong with using smart pointers with container classes? ex: vector<shared_ptr<int> >. Can you elaborate? – Aaron Sep 17 '08 at 5:23
1  
he's referring to containers of auto_ptr which is forbidden but sometimes compiles – Dustin Getz Nov 15 '08 at 22:00
@Aaron: Specifically, auto_ptr's assignment operator destroys its source operand, meaning it can't be used with standard containers which rely on this not happening. shared_ptr is fine however. – j_random_hacker Aug 30 at 10:38
vote up 3 vote down

Here are a few pits I had the misfortune to fall into, all these have good reasons which I only understood after being bitten by behaviour that surprised me.

  • virtual functions in constructors aren't.

  • Don't violate the ODR (One Definition Rule), that's what anonymous namespaces are for (among other things).

  • Order of initialization of members depends on the order in which they are declared.

    class bar {
        vector<int> vec_;
        unsigned size_; // Note size_ declared *after* vec_
    public:
        bar(unsigned size)
            : size_(size)
            , vec_(size_) // size_ is uninitialized
            {}
    };
    
  • Default values and virtual have different semantics.

    class base {
    public:
        virtual foo(int i = 42) { cout << "base " << i; }
    };
    
    
    class derived : public base {
    public:
        virtual foo(int i = 12) { cout << "derived "<< i; }
    };
    
    
    derived d;
    base& b = d;
    b.foo(); // outputs `derived 42`
    
link|flag
That last one's a tricky one! Ouch! – j_random_hacker Aug 30 at 10:36
vote up 1 vote down

PRQA have an excellent C++ coding standard based on books from Scott Meyers, Bjarne Stroustrop and Herb Sutter. It brings all this information together in one document. You can download a free copy from http://www.codingstandard.com/.

link|flag
vote up 6 vote down

Two gotchas that I wish I hadn't learned the hard way:

(1) A lot of output (such as printf) is buffered by default. If you're debugging crashing code, and you're using buffered debug statements, the last output you see may not really be the last print statement encountered in the code. The solution is to flush the buffer after each debug print (or turn off the buffering altogether).

(2) Be careful with initializations - (a) avoid class instances as globals / statics; and (b) try to initialize all your member variables to some safe value in a ctor, even if it's a trivial value such as NULL for pointers.

Reasoning: the ordering of global object initialization is not guaranteed (globals includes static variables), so you may end up with code that seems to fail nondeterministically since it depends on object X being initialized before object Y. If you don't explicitly initialize a primitive-type variable, such as a member bool or enum of a class, you'll end up with different values in surprising situations -- again, the behavior can seem very nondeterministic.

link|flag
the solution is not to debug with prints – Dustin Getz Nov 15 '08 at 21:59
Sometimes that is the only option... for example debugging crashes which happen only in Release code and/or on a target architecutre / platform different from which you are developing on. – xan Nov 17 '08 at 12:48
1  
There are definitely more sophisticated ways to debug. But using prints is tried and true, and works in a lot more places than you might have access to a nice debugger. I'm not the only one who thinks so - see Pike and Kernighan's Practice of Programming book, for one. – Tyler Dec 4 '08 at 18:32
+1 for noting the nondeterministic initialisation of global objects. (There are some rules, but they're not as intuitive or complete as we'd like.) – j_random_hacker Aug 30 at 10:34
vote up 6 vote down

G'day,

I've already mentioned it a few times but Scott Meyers books Effective C++ and Effective STL are really worth their weight in gold for helping with C++.

Come to think of it Steven Dewhurst's C++ Gotchas is also an excellent "from the trenches" resource.

His item on rolling your own exceptions and how they should be constructed really helped me in one project.

HTH.

cheers,

Rob

link|flag
vote up 4 vote down

Check out boost.org. It provides a lot of additional functionality, especially their smart pointer implementations.

link|flag
vote up 3 vote down

The most important pitfalls for beginning developers is to avoid confusion between C and C++. C++ should never be treated as a mere better C or C with classes because this prunes its power and can make it even dangerous (especially when using memory as in C).

link|flag
vote up 13 vote down

Some must have C++ books that will help you avoid common C++ pitfalls:

Effective C++
More Effective C++
Effective STL

The Effective STL book explains the vector of bools issue :)

link|flag
vote up 7 vote down

This web page by Scott Wheeler covers some of the main C++ pitfalls.

link|flag
vote up 3 vote down

This book may prove useful: http://www.semantics.org/cpp_gotchas/

link|flag

Your Answer

Get an OpenID
or

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