vote up 2 vote down star
4

Possible Duplicate:
What C++ pitfalls should I avoid ?

While reviewing code from an inexperienced programmer, we often came across common mistakes in C++ code such as:

  • Logical errors such as an off-by-one error (OBOE).
  • Boundary conditions unhanded
  • Problems with macros
  • Missing break in a switch statement
  • Memory leaks

What are other common errors you often come across?

flag

57% accept rate
1  
These are not specific to C++, they happen too often in C also. – Vijay Mathew Aug 21 at 7:03
11  
I suggest you make this community wiki... – Peter Smit Aug 21 at 7:06
You could also add "missing unit tests" to your list (and, in effect, remove the first four items). – avakar Aug 21 at 7:11
5  
One huge mistake an inexperienced C++ programmer often falls into is to use MFC ;) – Pavel Minaev Aug 21 at 7:24
Duplicate stackoverflow.com/questions/30373/… – Kirill V. Lyadvinsky Aug 21 at 7:37

closed as exact duplicate by Neil Butterworth, Kirill V. Lyadvinsky, Richard Corden, Naveen, Mark Aug 21 at 8:34

11 Answers

vote up 12 vote down check

Not learning (and using) STL or Boost

link|flag
vote up 7 vote down
  • implementing everything instead of trying to find and use/adapt already working code
  • letting an exception leave a destructor.
  • using delete instead of delete[]
  • using raw pointers instead of smart owning pointers
  • calling potentially long-running functions that return the same value each time in a loop condition (like strlen() )
link|flag
vote up 2 vote down
  • Wrong choice of STL containers
  • Writing many code by hand instead of using algorithms defined by the standard
  • Not making the destructor virtual in case of inheritance.
link|flag
vote up 2 vote down

Memory leaks sources:

  • Forgetting to delete objects (unclear ownership of a dynamically allocated object)
  • Non-virtual destructors for classes used in polymorphism

Exception safety issues

Multithreading issues

  • deadlocks
  • racing conditions
  • wrong conditional variables

Issues related to module linking (e.g. wrong DLL versions, wrong interfaces compiling the dependencies, etc).

Language features

  • Passing parameters (not built-in types) by value instead of by reference
  • Returing references to local objects
  • Pointer arithmetics
  • reinterpret_cast and unsafe casting (e.g. casting to void)
link|flag
vote up 2 vote down

Signed/unsigned arithmetic mismatch. A common example of the problem looks like this:

std::vector<int> v = ...;

// calculate average
int a = std::accumulate(v.begin(), v.end(), 0) / v.size();

v.size() will return an unsigned value. In both C and C++, if one of the operands is unsigned, the result will be unsigned, that is: (-1 / 1u) == (unsigned)-1 / 1u == 0xFF...FF. In our example, if sum of vector elements will be negative, the unsigned division will go "wrong" - and the result will then be quietly cast back into int (and most compilers don't warn about this except on the highest warning level, which warns about things that are often not mistakes - like /W4 on VC++)

link|flag
vote up 2 vote down

Misunderstanding object lifetime, and when constructors and destructors get invoked, especially when trying to handle more than one resource at a time in a single class. A classic example:

struct bar { ... };

struct foo {
  bar *p, *q;
  foo() : p(new bar), q(new bar) { }
  ~foo() { delete p; delete q; }
};

Of course, if q(new bar) throws, ~foo() won't get called - and p will be leaked. This most often happens with pointers when people don't use smart pointers, but I've also seen it happen with OS handles and other such things - often because people are lazy and don't want to write a RAII wrapper class for every kind of handle, and think that "I'll just clean it up in destructor" is good enough.

To cure problem without fighting laziness, just teach the shared_ptr custom deleter trick - this is especially great with C++0x lambdas.

link|flag
vote up 1 vote down

The biggest problem I see in code written by newbie C++ programmers is their lack of familiarity with the standard libraries and idioms. For instance, using char* instead of std::string, using manually allocated arrays instead of std::vector, not extending and using the standard exception class, not wrapping resource management using RAII etc.

link|flag
1  
In other words "A real programmer can write 'C' in any language." like 95% of all the C++ out there. – Steve Gilham Aug 21 at 7:28
vote up 1 vote down

Common mistakes in C and C++

  • assignment "=" instead of comparison operator "=="
  • ";" in the same line with a while/for, ie while (...) ;
link|flag
vote up 1 vote down
  • Not using references where needed (e.g. operator += (Matrix otherMatrix); )
  • Not using const on args and methods
  • Returning reference/pointer to local variable
  • (okay, this is C) Using unsafe strXXXX functions. (Factoid of the day: linux port of quake1 contained Q_sprintf function which used sprintf on internal statiс ~1kb buffer. At start q1 used it to print information about extensions of videocard(GL_EXT_xxx) and overflowed that buffer, leading to segfault. that's when I learned that you must 1) use >1kb buffer, 2) use strnXXXX functions)
link|flag
vote up 1 vote down

C++ Gotchas: Avoiding Common Problems in Coding and Design has a pretty good list.

link|flag
vote up 0 vote down
  • thinking there is only one best way
  • knee-jerk reactions like "using templates will bloat your code", yet at the same time,
  • not understanding the amount of cruft and overhead using pre-defined solutions can add to an implementation, hence
  • not learning the fundamentals so you can roll your own and use only what you need if that's more appropriate.
  • little details traps: unsigned vs. signed, int over/underflows, obscure "undefined" behaviors you would think would be defined (right shift of neg ints, anyone?)
  • being too cute with language idioms and quirks; just because you CAN do something doesn't mean you SHOULD do it. Just be clear, the compiler will do a better job of optimizing than you writing terse "i'm such a brilliant hacker" code
  • not understanding the difference between a heap-based ("new-ed") object, and a static or stack-based one
  • not using modern code-understanding editors to make navigation of C++ object relationships manageable
  • too much attention to portability, or not enough attention to portability
  • thinking that objects, inheritance, and polymorphism are some sort of silver bullet that will magically turn crap design, or lack of design thinking, into gold.

I realize a lot of these are not specific to C++

link|flag

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