up vote 70 down vote favorite
86
share [g+] share [fb]

I'm a novice programmer and have recently found a job doing C++ development... I've noticed that a lot of people seem to REALLY hate C++, calling it outdated/stupid/inefficient/whatever.. Personally I haven't really noticed any bad traits, but then that may be because I haven't had experience in anything else and I'm not experienced enough in it to discover its flaws..

So the question is: What are the pitfalls of using C++, so I'll know what to look out for.. Is it simply the lack of memory management or is there something else I'm not aware of?

Does being a C++ programmer make me somewhat stupid in the eyes of other programmers?

EDIT: Just to make my question clearer, what are the traits of C++ that make people hate it so much? I know it's somewhat hard to learn, I don't know a lot of things about it yet, but so far it hasn't seemed like an insurmountable challenge..

EDIT: All answers seem to be similar, and that is C++ is hard but makes some things possible that isn't in other languages. I guess what i'm getting from this is that programmers hate that C++ is hard..?

EDIT: I am not trying to start a flamewar here people! Okay, lets be more organized..

I want answers in this format:

Pitfall: Cause: Alternative (in other languages):

Example:

Pitfall: Lack of Memory management

Cause: You have to manually allocate and deallocate memory.

Alternatives: (Java) Has automatic garbage collection. Cleanup happens when the pointer is not being referenced to anymore.. JUST AN EXAMPLE, not sure how it is implemented..

EDIT: Guess We can forego this format..

link|improve this question
1  
c++ certainly has it's pros and cons, but anyone who says that inefficiency is a "problem" with c++ has no idea what they are talking about. You should likely ignore their opinion and find someone who does know what they are talking about. – Evan Teran Dec 22 '08 at 3:19
4  
Yeah, "what i'm getting from this is that programmers hate that C++ is hard" is a fair summary... ;) That's really what it all boils down to. – jalf Dec 22 '08 at 4:09
3  
Oh, about inefficiency as Evan says, that depends. Programmer time is a resource like any other, and C++ tends to use a lot of it. ;) So depending on your definition, C++ may be very inefficient. :) – jalf Dec 22 '08 at 4:12
1  
Evan: A problem with C++ (runtime) efficiency is that it's easy to create a lot of unnecessary overhead. If you're not careful, you'll create temporaries all over the place for example, which is a performance hit you don't naturally get with Java or C#. So C++ can easily become very inefficient. ;) – jalf Dec 22 '08 at 8:50
1  
Damn, this thread has gotten so big its hard to read >.< Can someone close this? Lets just say C++ has its pros and cons and leave it at that :(.. I shoulda known better than to ask such a vague question :( – krebstar Dec 22 '08 at 10:08
show 8 more comments
feedback

closed as not constructive by sth, ybungalobill, dmckee, John Saunders, Brad Larson May 16 '11 at 20:04

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.

51 Answers

1 2
up vote 111 down vote accepted

Please don't believe people that say C++ is bad. Often those people compare C++ to languages that aim to solve different problems than C++.

C++ follows the don't pay for things you don't need philosophy. It's therefore inappropriate to compare C++ to Java or C# which target simplicity and flexibility (think about reflection, for instance).

The point of C++ over C is that C++ allows you to take the advantages of object orientation and the power of generic programming to build cleaner and more concise code than you would do in C (In my opinion. Of course many C programmer think otherwise. But that's life). But it won't protect you from shooting yourself in the foot. Maybe that is what the aforementioned people don't like. One doesn't know.

In trying to do what it does, C++ has become quite confusing in some areas and intricate. So it still makes sense for programmers to just stick to plain C, if they don't feel like learning C++ while they are quite comfortable with C.

Believing there is a reason for the majority of undefined behavior cases, let's look at some others answers undefined behavior cases, and try to explain reasons.

// information about size lost, because we care about the lost size and performance
int* p = new int[10];  
int* p0 = p + 11; // undefined behavior, because information of size is lost, 
                  // we can't test.
int* p1 = p - 1; // Undefined behavior, again for the same reason.
int i = 0;
// undefined behavior. I don't know why they haven't forced the implementation to 
// give a diagnostic. Beyond me. Recent gcc versions warn (at least) anyway.
cout << i++ << " is less than " << ++i << endl;
// not undefined behavior, but the result of the cast is unspecified. This is
// so that if one knows the behavior of an implementation, one can provide optimized
// code running faster by doing that pointer conversion. The Standard say for a
// similar reinterpret_cast case: "It is intended to be unsurprising to those 
// who know the addressing structure of the underlying machine."
cout << reinterpret_cast<float*>(p); // undefined behavior
const int c = 42;
const int& r = c;
// just casting away const is not undefined. but writing to an const
// object is undefined behavior. still, no space and performance is lost by
// storing information about the constness of the object somewhere 
// (which would require runtime type information)
const_cast<int&>(c) = 43; // undefined behavior
// same argument: we don't want to do a check for overlapping region, and
// we want to keep being compatible with C. Maximal performance, minimal safety.
memcpy(p, p+1, 9); // undefined behavior, overlap
link|improve this answer
5  
programmers frequently find it confusing that "this" is a pointer but not a reference. another confusion is why "hello" is not of type std::string but evaluates to a char const* (pointer) (after array to pointer conversion) – Johannes Schaub - litb Dec 22 '08 at 1:56
1  
you can't reassign "this". i.e you cannot do "this = &other;", because this is an rvalue. but this is of type T*, not of type T const . i.e it's a non-constant pointer. if you are in a const method, then it's a pointer to const. T const . but the pointer itself is nonconst – Johannes Schaub - litb Dec 22 '08 at 17:53
2  
think of "this" like this: #define this (this_ + 0) where the compiler creates "this_" as a pointer to the object and makes "this" a keyword. you can't assign "this" because (this_ + 0) is an rvalue. of course that's not how it is (there is no such macro), but it can help understand it – Johannes Schaub - litb Dec 22 '08 at 17:55
2  
Andomar, if you add a value to a pointer to elements of an array, and the result will be a pointer that does not reference an element and not one past the end of it the behavior is undefined. that simple :) – Johannes Schaub - litb Mar 14 '09 at 15:00
5  
There is no reason to write C++ that way if you don't intend to deal with the resulting undefined behavior. You can use std::vector for arrays, memcpy is a C function, and all of those casts are bad uses of C++ casting. – Bernard Apr 4 '09 at 17:37
show 10 more comments
feedback

C++ is a systems programming language. That is, it is especially suited to writing operating systems (sometimes even drivers, with certain constraints) and anything that has similar requirements to an operating system - very direct control over performance-sensitive characteristics, absolute parsimony in use of memory or CPU cycles.

For that purpose, C++ is the best thing there is. There are people who claim C is better because it's simpler - the Linux kernel folks for example. Looking at how you allocate a dynamic array of structs in C vs the equivalent std::vector declaration in C++ makes me doubt that claim. C++ provides some complex tools which can be used by library designers to make life simpler for systems programmers.

But... so much for systems programming. C++ is, today, an inappropriate tool for general purpose application programming. I used it for that purpose for over a decade. I never want to go back to it. It just doesn't make any sense. In general purpose development, the number one rule is do not optimise prematurely. The whole philosophy of C++ is based on microscopic optimisation at every opportunity, before you have any evidence that its worthwhile. It's a recipe for painful, difficult labour with no actual economic benefit.

The irony is that it frequently ends up being slower than Java or C# as a result of these basic assumptions.

The std::string class was originally intended to support copy-on-write semantics. This means that when one string is assigned to another, the two objects share the same buffer, until one of them modifies it, at which point they stop sharing. This all happens behind the scenes to speed up your program. Then vendors realised that they needed to make it thread-safe, a subject the C++ standard was silent on at the time. So they put locking into the string class. This made it perform appallingly on multi-core machines, so they took out the copy-on-write optimisation. Back to slow copying! Meanwhile the need for copy-on-write doesn't even arise in Java and the CLR because they use immutable string objects directly accessed by references, providing inherent thread safety.

A similar situation exists now with boost's shared_ptr, now part of the language standard. It has to use interlocked operations to increment and decrement reference counts. This has a high cost on multi-core machines, and the world is going multi-core in a big way. It's a half-hearted attempt to provide something akin to GC, but it will never be able to compete with the real thing, and it's only going to get worse as multi-core scaling becomes vital.

For widely-used rich client applications, you need to write Windows applications. The ideal platform is the CLR, which provides a vast ecosystem of libraries, plus the language of your choice, the two major choices today being C# and VB. Both are fine, with C# appealing the most to people like me because yield return is the Awesomest Thing Ever. Or you can use Java - it has suffered over the years from horrible support for GUIs and a language enhancement process that is slower than molasses, and yet it is still better for developing desktop applications than C++.

For server-side apps, you are typically not writing "system" code. The most popular websites in the world are hardly ever written in C++, although the bare-metal HTTP server may have been. They are often written in dynamic languages like PHP, although Java has made some headway and ASP.NET isn't unheard of (this site, for instance).

There was a brave attempt by the chair of the C++ standards committee Herb Sutter to develop a huge set of extensions to C++ known as C++/CLI, designed to ensure that C++ was a true CLR-enabled language. But the extensions were so rich and complex that the result was really a completely new language that inherited all the complexity of C++ as well. And it is only used in practice to help with interfacing between old C++ code and new CLR code, not for general development; consequently it is a tad over-engineered.

So there you have it. If you're writing an OS or something that routes packets on a network, the raw plumbing, as it were, C++ is the best thing there is.

But let's face it, you're probably not doing that.

link|improve this answer
6  
I also welcome comments from downvoters. – Daniel Earwicker Dec 22 '08 at 3:48
6  
Garbage collection also allows you to take over memory management. You just allocate a big array of bytes and write some functions to suballocate from it. Also shared_ptr is only technically deterministic, not usefully so. What we want in deterministic cleanup is to be able to say... – Daniel Earwicker Dec 22 '08 at 12:52
4  
"By this point in the code, cleanup has occurred." With shared_ptr that can be very hard to prove because the object may be shared and hence still alive - else why bother using shared_ptr? It's used in situations where you don't care too much about when cleanup occurs - just like GC. – Daniel Earwicker Dec 22 '08 at 12:54
8  
From everything I've heard, boost shared_ptr is fast. Irregardless, any feature in the standard libraries of Java or C# can be implemented in C++. Even the GC in Java and C# can be implemented in C++. As a matter of fact, I'd be surprised if their GC's weren't written in C++ or at least C. – Bernard Apr 4 '09 at 16:07
12  
Any feature of those libraries can also be implemented in hand-generated binary machine code, if you're feeling really masochistic! – Daniel Earwicker Apr 10 '09 at 9:58
show 30 more comments
feedback

Your question is difficult to answer because for most programmers, the problem with C++ is the whole of the language, not individual pitfalls. Bjarne Stroustrup is on record as saying that he started "C with classes" because of a bad experience using Simula-67 and not being able to control the costs of memory management. So minor pitfall #1:

  • Many programmers think that with today's hardware and today's garbage collectors, the potential gain from explicit memory management is not worth the potential for introducing bugs. Please note that explicit memory management is not always faster; years ago Ben Zorn did a great study on the costs of conservative garbage collection in C and C++ programs. (I don't know why memory management engenders such passion, but it does.)

Another reason programmers dislike C++ is its complexity. Poster child for complexity: templates. When templates were first introduced, some compilers got them wrong, and almost all compilers had wildly inefficient implementations. I worked with people from Stanford who had "templatized" their code and an application that used to build in an hour would not build in a day. When this happens to programmers, they stay angry for a long time.

Another poster child for complexity: the language spec was always changing and the compilers were always behind. It's really infuriating to plan on using an alleged feature and then find out it's not supported, or that it appears to be supported but does not perform well enough to be useful. In the early days of C++, this happened a lot. Eventually the community stabilized on just two implementations: free software uses GNU C++ and commercial software uses the excellent front end developed by the Edison Design Group.

When almost nobody can implement a language successfully, that's a sign of a bad design. Programmers who have been burned remember, and in this case they rightly blame the language, not the compiler writers.

Another big reason that some programmers dislike C++ is that its design lacks intellectual coherence. C++ is a collection of features that were tacked on to C with only two criteria: somebody thought it was useful and if you don't use it you don't pay for it. This procedure is a recipe for a language in which the parts do not work together to form a harmonious whole. This is one reason people find the language difficult to learn. To learn more about the process by which C++ came about, check out Jim Waldo's excellent book on the evolution of C++. Waldo's book will give you a more balanced view than any of Stroustrup's apologia.

To sum up, the major problems people have with C++ are largely not individual pitfalls but rather

  • Early implementations didn't do what they said on the tin, and some programmers are still angry.

  • The language features don't fit together and the totality of the result is so very complicated that nobody can master it all. (Some C++ shops have fights over what subset to use.)

link|improve this answer
3  
blimey, you can say all of that about C# - its changed so much it bears little resemblance to .NET 1.1! – gbjbaanb Dec 22 '08 at 12:59
6  
It's been 8 years since I worked on C++ compilers, but in 2000 most vendors (including I believe Borland and Intel) bought C++ front ends from EDG rather than develop their own in-house. They were naturally not keen to publicize this fact. Had I not worked with EDG I would not have known. – Norman Ramsey Dec 22 '08 at 20:48
1  
I've read Comeau's compiler's the one which most faithfully implements the C++ standard, even more than GCC. GNU's C++ is fine except their non-standard "features" (some of which I consider frankly idiotic and running against the spirit of the languages). – Joe Pineda Mar 28 '09 at 17:36
5  
"When almost nobody can implement a language successfully, that's a sign of a bad design." So true, so true. – JesperE Oct 11 '09 at 15:20
2  
@Joe Pineda: Interestingly, EDG lists Comeau Computing among its customers (edg.com/index.php?location=customers_oc) – mlvljr Dec 30 '09 at 23:35
show 5 more comments
feedback

DISCLAIMER: litb has made some very good points in the comments to this answer. C++ should not be compared to python or C#. They're targeted at different areas of work. C++ is very well suited for the things it is used for. C# is very well suited for the things that is used for. Neither language can be considered "obsolete" or "inefficient" at the things they're meant to do. However, people who make statements like "C++ is obsolete and inefficient" usually try to make this comparison, to prove that C++ is not suitable for modern applications development. As litb said, this isn't a very meaningful comparison, but people still try to make it. So this post will do the same, to look at how C++ compares to languages like Java, C# or Python. Modern high-level RAD-like languages on their own home turf. In other areas (systems programming, low-level stuff on embedded devices and so on), C++ stands practically unrivalled (well, C and C++ does), there can be no doubt of that. But for high level business programming, C++ lacks a lot of niceties that other languages provide.

The problem is that nearly everything is a pitfall. It's a very versatile and powerful language, but it also lets you shoot yourself in the foot in hundreds of subtle ways that more "modern" languages don't allow.

About being outdated, the language lacks a ton of modern facilities. Look at the .NET class library, or Python's standard library. Both offer a huge set of functionality for pretty much anything you'd ever need. C++ has.... A few streams and a few container classes. (Yes, that's a bit of an exaggeration) Other languages have garbage collection to free the developer from worrying about memory management, C++ doesn't. So in many ways, C++ is outdated. It's missing a lot of tools that more modern languages have. But of course not in every way, and there are areas where C++ is the best tool we have.

C++ being stupid? Most definitely. There are a couple of notable blunders in the standard, such as std::vector<bool> doesn't behave as a vector, the export template keyword that virtually no compiler supports and a few others. The syntax is so complicated as to be almost impossible for a compiler to parse. Compile-times can grow to be huge because of this. The compilation model is nothing short of archaic (header files? Come on, we don't live in the 70's)But more importantly, writing correct C++ code is just ridiculously hard, because many instances of things that look harmless and compile without a warning actually rely on undefined behavior. The following are all examples of undefined behavior. They compile just fine, and they might usually work, but they may also format your harddrive, set fire to your computer, print all your porn to the office printer, or crash the program:

int* p = new int[10];
int* p0 
int* p0 = p + 11; // undefined behavior, pointer out of range
int* p1 = p - 1; // Undefined behavior, as above
int i = 0;
cout << i++ << ++i << endl; // undefined behavior, may not modify variable multiple times between the same sequence points
cout << reinterpret_cast<float*>(p); // The result of the cast is unspecified *except* tht if you cast it back to int*, you get the original value
const int c = 42;
const int& r = c;
const_cast<int&>(c) = 43; // undefined behavior // casting away constness from a variable that was initially const is undefined.
memcpy(p, p+1, 9); // undefined behavior, memcpy between overlapping memory

And of course many many more (and much more subtle) issues exist.

As for being inefficient, people often say that C++ is extremely efficient. And it is. I can't think of a better language for high-performance code. It beats C in many cases, and while Fortran may be a bit faster for purely numerical tasks, that gap has almost been eliminated by clever use of template metaprogramming and expression templates. C++ is damn fast. But again, only if you use it correctly. It is very easy to write inefficient C++ code, whereas something like C# is reasonably efficient no matter what you throw at it. To illustrate, check out this series of blog posts: http://blogs.msdn.com/ricom/archive/2005/05/10/performance-quiz-6-chinese-english-dictionary-reader.aspx

Two high-profile Microsoft bloggers competing to write the fastest version of a simple program, in C++ and C# respectively. The C++ version ultimately wins, but only after a huge amount of extra work, and a few extra bug creeping in. In almost every iteration until then, C# keeps pace easily. Apart from that, it's an enlightening and entertaining read. Check it out.

Anyway, by asking what the pitfalls of C++ are, you're really looking at it the wrong way. By default, assume everything in C++ is a pitfall. Only trust code that has been verified against the standard. And of course, that makes it virtually impossible to trust your code if you're not already a C++ expert. ;) The best advice I can give to avoid the pitfalls is to really try to learn the language. Read the C++ questions here on SE, get a copy of the standard (and get some practice in looking things up in it. It's not an easy read), buy a book like the annotated reference and so on.

And no, if anything, being a (good) C++ programmer might make you look impressive in the eyes of others, simply because getting good at C++ is a huge undertaking.

Overall, there are good reasons why C++ can be considered all these things you mentioned. But not in every case, and overall, the language has some unique strengths that no other language has so far duplicated.

Edit Oops, looks like I angered the One-True-Language Brigade. Perhaps you should actually read my answer before saying that "virtually nothing in it is correct". All I do is list a bunch of facts. The C++ standard library is missing many everyday features that .NET provides. Where's my threading library? Sockets? Regex? And the things I listed are undefined behavior. Rico Mariani and Raymond Chen are high profile MS bloggers, and Mariani in particular is one of MS's performance gurus. And they did make a series of blog posts demonstrating the relative performance of C++ and C#, and the outcome was what I said. Those things are simple facts. And if you don't think vector<bool> is stupid, I'd really like to hear your reasoning.

I'm sorry if I angered anyone who only knows one language, and feels that therefore it must be perfect. But C++ is not perfect. I like the language, but I don't have any illusions that it's perfect, or that it doesn't lack a lot of modern conveniences.

link|improve this answer
6  
I can't believe this answer has been accepted. Virtually nothing said here is correct. – Nemanja Trifunovic Dec 22 '08 at 2:04
3  
"Look at the .NET class library, or Python's standard library. Both offer a huge set of functionality for pretty much anything you'd ever need." Lmao, nothing I need (except for things like primitive types) is in the .Net framework. :( – TraumaPony Dec 22 '08 at 2:09
4  
Sure there's bad, but then there's the good stuff, to name a bit: Good C++: Templates, boost, standard lib, extensive 3rd party lib support, RAII, access to C primitives, cross platform is completely possible, manual mem. management optional but allowed. Plus nobody writes code like above. – Doug T. Dec 22 '08 at 2:22
3  
i'm not going to say everything you wrote is wrong. i'm just saying you compare c++ with c# isn't going to be useful. for example c++ doesn't have a big standard library because it wants to keep the burden for implementors small. so for example it provides a "freestanding" library. – Johannes Schaub - litb Dec 22 '08 at 3:26
3  
A performance test comparing C++ and C# by Microsoft, is not believable. For starters they control both implementations they're testing, and intentionally deprecate C++ in favor of C# due to its relatively high usage on non-Windows platforms, something they wish to stamp out. – Matt Joiner Nov 14 '10 at 7:18
show 31 more comments
feedback

What's wrong with C++ is its syntax. Very, very wrong. For some good and other not so good reasons the syntax is completely contorted, complicated, unreadable and in a few cases downright ambiguous. Of course the standard clears these ambiguities but the rules are (seemingly) arbitrary and these cases should have been prevented in the first place.

I'll give two examples which I find classical and which illustrate the core issue.

First, templates. (Unintentionally) introducing a Turing complete language that executes at compile-time was both a stroke of genius and madness, since it allows very complex expressions. Consider:

/* 1 */ a <  (b) > (c)  > (d);
/* 2 */ a < ((b) > (c)) > (d);

What does this do? Notice that both are well-defined C++ with two definite meanings (for matching types/variables ad).

More generally, I've got a bone to pick with the C++ committee for their design of declarations and definitions. A bumbling band of baboons couldn't have done worse. (And with all due respect, I stand by this statement!)

Consider the following list. Try to know/guess for each line what it does.

  1. a b;
  2. a (b);
  3. (a) b;
  4. (a) (b);
  5. (a b);
  6. (a (b));
  7. a b(0);
  8. a b();
  9. a b[];
  10. a b = a();
  11. (a *) (b);
  12. (a) * (b);
  13. (a) (* b);
  14. a (* b)();
  15. a b(c);
  16. a b((c));

This is madness!? No, this is C++!

Note that these codes have got different meanings depending on whether a is a type or a variable! Let's take a look … I've replaced a with the type int for clarification.

  1. int b: Declares the variable b to be of type int.
  2. Two possibilities:
    1. int (b): Performs a function-style cast from b to type int.
    2. var (b): Calls operator () on object a and passes argument b.
  3. (int) b: Performs a C-style cast from b to int. This is equivalent in all but name to the function-style cast. Notice that this is true even for non-POD when the constructor is called.
  4. (a) (b): Two possibilities; like 2.2 and 3, respectively.
  5. (a b): Syntax error.
  6. (var (b)): Like 2.2.
  7. int b(0): Defines the variable b of type int with the value 0.
  8. int b(): Declares the function b of prototype int (void).
  9. int b[]: Declares the variable b of type int[] (i.e. array of int).
  10. int b = int(): Defines the variable b of type int and assigns it the value 0. For a that are POD, this call emulates the default constructor syntax.
  11. (int *) b: Performs a C-style cast from b to int*.
  12. Two possibilities:
    1. (a) * (b): Multiplies a with b. Duh.
    2. (int) * (b): Performs a C-style cast from *b to int.
  13. (int) (* b): Ditto.
  14. int (* b)(): Declares the variable b of type “pointer to function with prototype int (*)(void)”.
  15. int b(c): Declares the function b of prototype int (c) (and here, c is interpreted as a type, never as a variable, even if there is no such type).
  16. int b((c)): Defines the variable b of type int and assigns it the value of c. More generally, this calls the constructor passing one argument (c).

Notice in particular how sometimes parentheses have got a meaning while being optional at other times. In case 16, the inner parentheses look completely redundant even for professional C++ programmers: in order to disambiguate between types and variables, variables may always be wrapped redundant parentheses, while types may not. This is the reason for the completely different semantics of statements 15 and 16.

And this doesn't even touch on arcane matters like macros, trigraphs or templates. These are all plain vanilla statements/expressions that might be found in any old code.

By the way, the above also gives ammunition why C-style casts should, always, ever be avoided in favour of the more verbose new style C++ casts.

link|improve this answer
show 2 more comments
feedback

As others have said, C++ IS REALLY HARD TO LEARN. More than that, it's a two-stage learning. First, you have to learn all the language features. Second, you have to learn how to use them wisely. Most people never get to the second stage, and hate the language forever.

But in many cases, though, it's "religious" hatred. This is particularly common between some Java programmers I know, which believe Java came to replace all the other languages, is better than them, and C++ in particular (for some reason) is the major evil. They don't state this directly, of course, but it's not hard to get it.

I love C++ and do most of my job in it, but also feel having to mention that C++ does have many flaws in its design, though, so much that there's a book about it, Imperfect C++:

None of them, of course, should be reason to thrash it (therefore the book). But also none of its strengths should be the reason to use it when another language is a better choice. I, for instance, would always consider Java, Ruby, PHP, etc. as a better choice for a website backend than C++. To automate simple tasks, I'd go for scripting languages... and so on.

link|improve this answer
show 2 more comments
feedback

According to Linus Torvalds, "C++ is a horrible language".

Yet again, Steven Dewhurst's response to his critisicm.

I think it's only fair to point out that Linus' diatribe is more than a year old, and he has spoken in more measured and printable tones elsewhere about the same subject. Less excusable, however, is that he makes the claim that C++ cannot be used in resource-constrained areas with nothing but anecdotal evidence to support his claim. Linus has done good work and has earned his soap box, but he also has a professional obligation to make sense while he’s holding forth. (For those who follow such things, this is an instance of Gotcha Chapter 12, “Adolescent Behavior,” from C++ Gotchas.)

The argument that abstraction and efficiency are mutually-exclusive or that they're mutually exclusive in the context of C++ is demonstrably false. Lately, much of my work involves writing embedded code in C++ with heavy use of inheritance and templates, and the results have been more than promising. The resultant code is typically smaller and faster than the equivalent (well-written) C code provided by the board's manufacturer, and has the significant advantage of being usable by a developer who is not expert in the minutia of the board's design. Unlike Linus, I haven't written a commercial OS, but I have written a policy-based, pre-emptive tasker in C++. It occupies just 3k of RAM and is pretty zippy in addition to being easy to understand, customize, and maintain. Just to annoy people like Linus, I've also used typelist meta-algorithms to generate exception handlers with identical efficiency to hand-coded C. In a number of recent talks given at the Embedded Systems conferences, I've shown that commonly-criticized C++ language features can significantly outperform the C analogs. As an old-school, Bell Labs C hacker I've nothing against C. But C++ provides tools and capabilities that are hard to come by in C, and often make it easier for a competent C++ programmer to produce cleaner and typically smaller and faster code than the C equivalent.

Regarding competence, Linus’s implied argument that C++ attracts bad programmers the way other things attract flies is, in spite of the effective metaphor, both unfair and a little over the top. Inexperienced or incompetent programmers have been lured into writing bad code in other languages as well; I've inherited my share of poorly designed and rendered C. There's no question that C++ is a significantly larger and more complex language than C, and a competent C++ programmer should be familiar with many more design styles (including, among others, that "idiotic 'object model' crap") than a competent C programmer. Wider experience with different design approaches and coding idioms is an advantage if the programmer actually has more than a passing understanding of the techniques. Problems typically arise when teams of competent C programmers are thrown onto a C++ project without adequate preparation simply because C++ syntax looks something like C syntax. The results are usually about the same as you’d get by throwing the same team into a COBOL project. But you’re not going to catch me criticizing COBOL. That’s Linus’s job.

link|improve this answer
show 1 more comment
feedback

I use C++, instead of C, because I like having classes as first class objects.

I like C++ because I can call anything I want written in Fortran, C, and C++.

I love static typing.

I appreciate it's undefined behavior, because it allows optimization opportunities for the compiler.

Resource Acquisition is Initialization (RAII) is your friend.

You are listening to the wrong people. C++ is optimized for certain applications, but is not so good for others. Use the right tool for the right job.

link|improve this answer
show 4 more comments
feedback

I don't think you should take anyone that says C/C++ is "outdated/stupid/inefficient/whatever" too seriously.

It's true that a lot of people may be using higher level languages for certain tasks these days, but it really depends on what you are doing. In many situations C is the best and right tool for the job.

I'd also suggest that learning lower-level languages like C is a great foundation for becoming a better programmer. You're working closer to the CPU, and understanding more about how processes evolve on a machine. This kind of knowledge will improve your understanding and give you an advantage when it comes to designing systems and architectures, even in higher-level languages.

link|improve this answer
show 7 more comments
feedback

C++ is hard to learn and that's why some people hate it. I like it because it lets me do my job and does not hold my hand. If I screw something up, there is only one person to blame for it - me.

link|improve this answer
3  
I can't agree more. – Eduardo León Dec 22 '08 at 2:59
feedback

I could write an long rant, but it amazes me this question comes up so much as it does.

There is nothing wrong with C++, it's only in the programmers head :).

As for it being outdated... If you're using Firefox or Google's Chrome to view this page, you using an app written in C++.

The main pitfall of C++ is it makes you read and understand before you go and start to hack together a program. There are many ways to learn C++ and to implement C++, that perhaps, is one confusing aspect of C++. Once you have the language semantics down, the rest is just following them to complete your task.

link|improve this answer
2  
Yes, this is true, but for the most part those apps are C++. – Chris Jan 15 '09 at 16:14
show 1 more comment
feedback

Pitfall: It doesn't have a very fashionable garbage collector!

Cause: RAII

Alternatives: manually call dispose() or close() methods through your code, or scatter every scope block with the using() equivalent. Alternatively force a GC collection regularly, or wait paitently for the GC to kick in and finalise your object.

:-)

link|improve this answer
3  
You can implement a GC in C++. Anyway, GC would be a terrible thing in a hard real time system. If the GC kicks in at the same time your "fly by wire" fighter jet is supposed to respond to the joy stick controls to pull up, it could kill the pilot. – Bernard Apr 4 '09 at 16:02
3  
+1 for the irony :) – Mladen Jankovic May 26 '09 at 10:40
show 5 more comments
feedback

I find C++ FQA Lite to be a good compilation of problems with C++.

link|improve this answer
2  
I don't. If it ever was at one time, it's obsolescent at best. – David Thornley Jun 14 '10 at 14:02
2  
It's hilarious and very insightful. – Matt Joiner Nov 14 '10 at 2:14
feedback

Speaking as a C++ fan, here's what I see as problems.

First, the language is complicated. There's a lot to learn, and implementors are often slow to add new standard features. The cause is that the language evolved rather than was planned out, and languages like Java were more planned.

Second, there's no central big library. This is probably due to the Unix philosophy of offering a lot of choices, so there's plenty of different libraries here and there. This contrasts to Java's huge standard library, and Perl's CPAN.

Third, people tend to learn the wrong things first. In this list, and the Frequently Questioned Answers rant, people complain about things that can be easily managed with standard strings, smart pointers, container templates, namespaces, etc. This is partly due to the size of the language, which makes it hard to learn everything fast, and the history which makes people usually learn the more C-like parts first. Other languages (Perl excepted) tend to have more standard ways of doing things.

Fourth, programming well with C++ requires more skill and knowledge than other languages. Stroustrup designed it to be usable for almost anything, and its evolving nature means that you have to know more to use C++ safely than most other languages. There are more recent languages that cut off the complications (pointer arithmetic, multiple inheritance), and concentrate more on making the language safer to use at the expense of some expressiveness the designers don't like.

link|improve this answer
2  
Learning the C-like parts first is useful because the core language is C-like and the high-level stuff is just grafted on. You can write std::string str = "Hello, world!\n", but if you don't know about pointers, you won't understand why std::string str = "Hello, world!" + '\n' isn't equivalent. – dan04 Jun 12 '10 at 22:41
feedback

Best description of C++ I have ever read was from Steve Yegge's Tour de Babel. I also really love his description of Perl from the same article

C++ C++ is the dumbest language on earth, in the very real sense of being the least sentient. It doesn't know about itself. It is not introspective. Neither is C, but C isn't "Object-Oriented", and object orientation is in no small measure about making your programs know about themselves. Objects are actors. So OO languages need to have runtime reflection and typing. C++ doesn't, not really, not that you'd ever use.

As for C: it's so easy to write a C compiler that you can build tools on top of C that act like introspection. C++, on the other hand, is essentially un-parseable, so if you want to write smart tools that can, for example, tell you the signatures of your virtual functions, or refactor your code for you, you're stuck using someone else's toolset, since you sure as heck aren't gonna parse it. And all the toolsets for parsing C++ out there just plain suck.

C++ is dumb, and you can't write smart systems in a dumb language. Languages shape the world. Dumb languages make for dumb worlds.

All of computing is based on abstractions. You build higher-level things on lower-level ones. You don't try to build a city out of molecules. Trying to use too low-level an abstraction gets you into trouble.

We are in trouble.

The biggest thing you can reasonably write in C is an operating system, and they're not very big, not really. They look big because of all their apps, but kernels are small.

The biggest thing you can write in C++ is... also an operating system. Well, maybe a little bigger. Let's say three times bigger. Or even ten times. But operating system kernels are at most, what, maybe a million lines of code? So I'd argue the biggest system you can reasonably write in C++ is maybe 10 million lines, and then it starts to break down and become this emergent thing that you have no hope of controlling, like the plant in Little Shop of Horrors. Feeeeeed meeeeeee...

If you can get it to compile by then, that is.

We have 50 million lines of C++ code. No, it's more than that now. I don't know what it is anymore. It was 50 million last Christmas, nine months ago, and was expanding at 8 million lines a quarter. The expansion rate was increasing as well. Ouch.

Stuff takes forever to do around here. An Amazon engineer once described our code base as "a huge mountain of poop, the biggest mountain you've ever seen, and your job is to crawl into the very center of it, every time you need to fix something."

That was four years ago, folks. That engineer has moved on to greener pastures. Too bad; he was really good.

It's all C++'s fault. Don't argue. It is. We're using the dumbest language in the world. That's kind of meta-dumb, don't you think?

With that said, it is obviously possible to write nice C++ code, by which I mean, code that's mostly C, with some C++ features mixed in tastefully and minimally. But it almost never happens. C++ is a vast playground, and makes you feel smart when you know all of it, so you're always tempted to use all of it. But that's really, really hard to do well, because it's such a crap language to begin with. In the end, you just make a mess, even if you're good.

I know, this is Heresy, with a capital-'H'. Whatever. I loved C++ in college, because it's all I knew. When I heard that my languages prof, Craig Chambers, absolutely detested C++, I thought: "Why? I like it just fine." And when I heard that the inventor of STL was on record as saying he hated OOP, I thought he was cracked. How could anyone hate OOP, especially the inventor of STL?

Familiarity breeds contempt in most cases, but not with computer languages. You have to become an expert with a better language before you can start to have contempt for the one you're most familiar with.

So if you don't like what I'm saying about about C++, go become an expert at a better language (I recommend Lisp), and then you'll be armed to disagree with me. You won't, though. I'll have tricked you. You won't like C++ anymore, and you might be irked that I tricked you into disliking your ex-favorite language. So maybe you'd better just forget about all this. C++ is great. Really. It's just ducky. Forget what I said about it. It's fine.

link|improve this answer
3  
Slight problem with that is the comment about STL and OOP. The STL is not actually OO. It's more like abstract data types used as a basis for functional programming. The algorithms are pure functions and function objects are like really inconvenient lambdas. Clearly its designer was an OO sceptic. – Daniel Earwicker Dec 22 '08 at 4:34
1  
I just read half of Steve Yegge's rant about Lisp. What he described there is not a language problem. It's a quality of developer program. Of course the system written by one of the best software engineers in the world is going to be better than the one created by a room full of code monkeys. – bobwienholt Dec 22 '08 at 16:32
1  
I love the "you don't build a city out of molecules" remark. That sums up why layered systems exist. – Soviut Jan 3 '09 at 0:41
2  
You know, it sort of makes me sad that someone calling steve yegge a joke got six upvotes. It's sort of like calling jwz a slacker, or paul graham a moron. There are a certain class of people that are deserving of respect, even when you disagree with them. Steve Yegge falls into that class. – Matt Briggs Aug 25 '10 at 1:07
show 3 more comments
feedback

C++ allows you to construct all sorts of abstractions with minimal performance penalty. No other languages come close in this regard. There're problems/defects with it, as it's a complex language and the specs and implementations can have bugs/defects, just like most other languages (even python, ruby, php etc. have many bugs you have to work around.)

Other than that, the main problem is complexity, as it's a multi-paradigm language that allows you to do all kinds of things in sometimes verbose and somewhat non-intuitive ways (which gets better after you understand/practice a little more.)

However for applications where bottle necks are else where (external services/db etc.), the performance advantage of the language is negligible and doesn't worth the extra effort.

OTOH, I personally find my productivity in C++ (with the help of the excellent boost libraries) is on par with that in other languages (including Java, Python, Ruby, Perl etc.) for large performance sensitive applications, because you end up pulling your hairs out if they are too slow and you have to rewrite parts of it in C/C++, which is usually a PITA to deal with (all foreign languages interfaces I have used have been a PITA (mostly due the maintenance need of upgrades these other languages), including simpler ones like those in Tcl, Lua and Ocaml, compared with using the same language). For short one liners, my favorite is still Perl, as it's ubiquitous and more consistent than shells.

link|improve this answer
1  
THis is good.. Any good scripting languages you recommend to supplement C++? I was looking at Python 3.0 but not sure which one is easier to learn, etc.. – krebstar Dec 22 '08 at 13:20
show 2 more comments
feedback

To me C++'s complexity is actually justified to some degree by the fact that it's a multi-paradigm, performance-oriented language. I think its biggest downfall is that it's engineered only for performance and flexibility, and is missing a ton of little convenience/syntactic sugar features. In other words, it just makes very little effort to make simple things simple, leading to death by a thousand cuts. Examples:

  1. A good, but trivial, example is the ridiculous amount of boilerplate necessary just to iterate over an STL container.
  2. A really, really basic standard library. Yes, you can go find third-party libraries, and this is fine when you have some large monolithic need. However, when you need a bunch of small, miscellaneous pieces of functionality, the overhead of finding libraries and keeping track of all these dependencies is hell.
  3. An antiquated module system that requires you to violate DRY by including prototypes in headers, thus telling the compiler the same thing a zillion times.
  4. No delegates, closures, etc. Sure, you can simulate these with other language features, but it's a lot more of a PITA to use than if they were first-class concepts.
  5. This is only a problem because the nature of C++ is to rely so heavily on metaprogramming where less performance-oriented languages would use something like runtime reflection or duck typing, but the template system is a Turing tarpit. Variadic templates, static_if, etc. would make C++ metaprogramming much more useable.
  6. Lack of GC. Yes, GC isn't appropriate for everything, but it's appropriate for most things. If C++ GC was opt-out, not opt-in, I think it would simplify things greatly, while still allowing real-time programs, embedded code, etc. to be written in C++. Admittedly, though, with RAII and smart pointers, lack of GC isn't as bad as it sounds at first glance.

I'm sure I could think of more, but these are just my biggest, most obvious complaints.

link|improve this answer
feedback

C++'s drawbacks are mainly that it is quite complex. A lot of that complexity extends to syntax (especially in the area of declarations, initialization/construction, and in particular templates). A lot of the syntactic complexity is in the language because the designers were committed to keeping the syntax as backwards compatible with C (and early, pre-standard C++). Quite simply, there are an awful lot of rules to using C++ properly, and a lot of those rules are 'special cases'.

There is also a lot of complexity in terms of resource management -it's entirely the programmer's responsibility. RAII helps a lot with that, but until Boost-style smart pointers and other RAII management classes become universal and/or standard, RAII techniques will be done differently in different projects making them painful to adopt (everyone seems to roll their own).

The advantage of C++ is that the programmer is largely in complete control. And as far as potential performance goes, there are few things that would require dropping down to assembly to get performance that can't be done in C/C++.

link|improve this answer
show 6 more comments
feedback

The single biggest problems with C++ is the separation of "platform" and language. That is, when you get a C++ compiler and the standard libaries, there is not a lot of standard utilities and frameworks that the developer can just jump in and use. This makes it hard for C++ to be marketed.

If you look through the marketing crap and compare language to language, not platform to platform, you will find that C++ is one of the best languages around, suited to many, many types of applications.

I personally dislike the way that C# and Java are tied to their respective platforms.

link|improve this answer
feedback

Speaking as someone who does a lot of maintenance work:

Other peoples C++ can be very hard to parse. There is a lot more scope for self expression and that can be quite dangerous!

Memory management is certainly an issue, a good C++ programmer can produce amazingly fast and efficent programs in C++ maybe more so than any other language.

In my experience there aren't that many of those guys around and the casual C++ programmer can cause a lot of damage in fewer lines than in (say) Java or C#.

Unless you have a high degree of technical competence it can be much harder to produce cross platform code: libraries, word sizes etc will trip you up.

link|improve this answer
show 2 more comments
feedback

Maybe someone else has already said this but...

Language only matters to a point. The best programmers can create great systems in crappy languages and the worst programmers can create crap systems in the greatest languages. I've seen it time and time again... and it's the most annoying thing in the world.

link|improve this answer
feedback

C++ is big and complicated.

But that's not the problem.

Because it's big and complicated, many companies/departments hire a C++ guru. The job title is often "Application Framework Architect" or something similar. This job, unfortunately, attracts people who are not easy to work with. They usually don't write low-level code but do write high-level, excessively-generic templates that don't really do anything. They also write coding standards. And since they haven't written any low-level code in years, they easily forget that they making other developers jump through hoops (or maybe they enjoy doing so.) So you end up with silly rules like "switch statements are banned" and "all database access must go through my (broken) ORM template library." And it's politically unwise to argue with them because they are assumed by management to always be right on any C++ issue.

This is less of a problem with simpler languages, because there are fewer subtleties that the guru could claim to be the only one to understand.

link|improve this answer
show 1 more comment
feedback

C++ will not spoon-feed you. If that is a problem, then yeah, it sucks. :)

link|improve this answer
feedback

Here is mine ..

Pitfall: Lack of Intellisense support compared to C#, VB.NET

Cause: Without Reflection mechanism as in C#, VB.NET, it's hard for an Visual Studio to provide great insellisense/autocompletion of the same quality.

Alternatives: C# and VB.NET :)

Pitfall: It is hard to create GUI program with Win32 or MFC. Even third-party tools such as Qt or wxWidget is hard for a n00b to setup and understand.

Cause: Maybe because creating a GUI and handling events in VB 6.0, C#, VB.NET is so easy. So I see doing this in Win32, .., is hard.

Alternatives: We can actually create GUI in C# and have some background works done in C++ with C++/CLI. But this also adds dependency to .NET Framework :)

However, I always praise C++ programmers for their algorithmic expertise. But I don't see many C++ programmers who do software engineering practices or OOP concepts, in my life.

link|improve this answer
1  
Reflection lets you get information about an object's type, namespace, properties, functions... With this information the code editor can suggest what you can type following the object or class. You can generate ctag database to get such information for C/C++ classes. Good luck! – phi Dec 22 '08 at 5:11
2  
Reflection is not the cause of bad intellisense; it's a crappy compile-as-you-type parser that cuts (a lot) of corners for performance. – Jasper Bekkers Dec 22 '08 at 7:14
2  
Reflection allows you to get all info about your source code - types, structures, code etc. And your competitors get to see it too :) – gbjbaanb Dec 22 '08 at 12:57
1  
The difficulty in writing GUI code in C++ for Windows has nothing to do with the language. That is about the available libraries. Considering that Windows and .NET are commercial products of the same corporation (MS), I would expect it to work better there. An equivalent library in C++ can be made. – Bernard Apr 4 '09 at 17:46
show 10 more comments
feedback

This is a great question for me, because C++ was the first language I ever learned. It was a challenge to program in C++ in college. Then I learned LISP, that was totally different and still very challenging!!! Then I learned Python and Java. All I can say is WOW! The difference is in two areas, ease of coding and ease of use. You can't really see just how difficult it is to do simple things in C++ until you have used other languages that are so much more natural and ease-ful (not easy, but "full of ease", that natural flowing feeling)

I think of programming in C++ like lifting weights: once you can lift 200 lbs, then a push-up will be a heck of a lot easier. Or if you lived your life with weights on all the time (C++) then when you take those weights off, you're going to feel a whole lot lighter, and wonder what the heck you were thinking.

Pitfall #1: No Ease of Programming. Bugs happen much more often because you are dealing with lower level features such as pointers and *char a lot.

Cause #1: Directly accessing memory is something you can't avoid. Pointers used all over the place.

Alternatives #1: C#, Java, Python, Ruby, etc

Pitfall #2: No Ease of Use. Many common everyday things you might want to do, you will either have to code yourself or find some source online, whereas other languages have many more features built into their standard libraries.

Cause #2: Don't know. Maybe it is because the language is old?

Alternatives #2: C#, Java, Python, Ruby, etc

link|improve this answer
6  
If you're having problems with pointers and char *, ur doin it rong. Use standard containers and std::string, and your life will be much easier. – David Thornley Dec 22 '08 at 15:04
show 2 more comments
feedback

To name one pitfall - (arguable) lack of a proper module system. And solving the problem by preprocessor usage made things only worse IMHO.

Despite the popularity of C++ I must admit I have yet to see a proficient C++ developer in my not-very-long career personally. Knowing C++ will make you a more valuable player in the field for sure, let alone make you stupid in others eyes.

To give a broader explanation on "the lack of a module system", consider this example:

include <someheader.h>
...
...
x = afunction(...);
...

Now, there is no way to determine which module the symbol "afunction" comes from unless one goes and searches the declaration through the "someheader.h" and all the headers "someheader.h" includes and the headers those include and so on...

Of course, this is not much of a problem for your C++ compiler as it is given all the source code in a big junk of file(*) that is nicely prepared by the preprocessor, all the include directives expanding to actual sources they do point.

Now, it's debatable whether this is a better way to handle modules of source files compared to how other languages does and sure has its advocates for its usage but as far as I can see, this is one reason why C++ tools, let it be the intellisense feature in your IDE or any refactoring tool, are not up to par with say.. C# or Java tools. (Another reason would be the templates.)

(*) Citation needed. It would be nice if somebody enlightens us about C++ compilation cycle more intimately than this post does :).

EDIT: some funny quote supporting my experience..

C++ is like teenage sex:

* It's on everyone's mind all the time.
* Everyone talks about it all the time.
* Everyone thinks everyone else is doing it.
* Almost no one is really doing it.
* The few who are doing it are
      o doing it poorly;
      o sure it will be better next time;
      o not practicing it safely.

ps. You may also want to look at the D language which addresses the problems C++ faces in a more elegant and organised way. Reading through D documentation you may find comparisons to C/C++, explaining the pitfalls and alternative solution(s) D provides. Much recommended.

link|improve this answer
3  
Modularity in C++ is knowing where to place your #include's. – Eduardo León Dec 22 '08 at 3:03
show 10 more comments
feedback

C++ is sometimes very convenient and can ease development of some low-level code in C. Aside from various specific complications, the problem is that C++ is too often considered a much higher-level language than C, which is true in terms of the concepts and abstractions it recognizes, but those are mostly statically interpreted before actually compiling the code. In the way that the code is generated, it is almost as low-level as C. The compiler goes to a great length in trying to generate optimized low-level code equivalent to what the program specifies and hide the details from the programmer, but the details are there and have an effect in plenty of special cases which in practice requires you to take them into account.

Two main traits of the kind you had in mind follow:

Unclean function/module separation in generated code

Most classic compiled languages as well as modern "byte-compiled" languages, have the nice property of code generated by the compiler in so-called "units of compilation" - routines (functions or procedures) within modules (libraries, namespaces).

In C, for example, the body of every function can be compiled independently of that of every other function (of course the prototypes of functions and declarations of global data used need to be available to it, but those do not change when their implementation changes), resulding in text symbols (for functions) and data symbols (for global and static variables) in the generated object file. The code generated for calling a function is independent of the called function's code. This even extends to modules - different source files can be compiled separately into modules at different times (even by different compilers) and as long as they work and their interfaces (declarations and prototypes) do not change and the binary format is compatible (usually dictated by the operating system), one can be changed and re-linked (possibly at execution time) with the others.

In C++, this is not the case. Big parts of a program must be compiled together. Inlined code can span modules, code changes in small part of a class can change the code generated for many member functions, and users of the class, and big part of the code generated for templates is generated when compiling code that uses the templates (which is why in most implementations all templated code used externally needs to be implemented in header files). This can inflate executable sizes and compile times and make debugging more difficult. It also hinders modularity of compiled code (try distributing libraries that work with different compilers) and is largely incompatible with a main idea behind shared libraries - you can update one without having to replace or rebuild all programs that use it.

In practice this is not always a big problem - modern debugger technology often eases handling the generated code, big executables are tolerated if most of the code is not shared anyway, programs are tightly bound to one version of a library anyway, multiple versions of libraries can coexist, rebuilding is possible, and modern hardware and compilers are fast so compilation time does not necessarily matter so much. But this makes C++ feel very unclean, and in some cases when large systems are maintained, this can be a great pain.

Compile time problems / leaky abstractions

Pitfall: Many times, a small change in your code in one place can cause a much bigger change in the way code around it and types or objects used by it is treated, due to the great amount of static inference the compiler performs. Such a change can then cause the compilation to fail because this static inference does not work. If those details are ignored and the code at which the error occurs is inspected at the intended level of abstraction, there is no visible problem in it, but following the declarations will lead to an ambiguity or clash elsewhere. The error message generated by the compiler in such a case is likely to involve those static details that a real abstraction would not reveal, and to resolve the error you will need to understand them at that level.

Cause: The advantage is that even if the programmer is aware of those details, the compiler often takes care of them in an better way than the programmer would manually and unless a lot of attention is given, better optimized code is produced, while maintenance is simplified. Such errors often result from misunderstanding of the implications at some stage or insufficient care in the use of some language features, which is all too common. The programmer needs to understand the language well, be aware of those details and take care while writing such code.

Example: Compilation to fail where templates are used in multiple places, used elsewhere, due of infinite recursion at compile-time (which is of course detected by the compiler), resulting from a reference to a common type. Templates are designed to provide a polymorphic interface where compatible types can be substituted independent of the declarations behind them, but strictly the interface of a template is much more complex than the method signatures, involving all implicit types in the class definition.

Alternatives:

Such details do not need to be inferred if they can be made explicit, requiring somewhat finer abstractions - this means more elaborate (and thus longer) code. This leads to a lower level interface closer to the actual semantics, and can to some extent be implemented even with features in C. In this case such errors are localized and error messages point where the clash is - which the programmer cannot be unaware of due to the explicitness of the interface. This is appropriate when low-level control and deterministic runtime of the kind that C++ can offer is desired.

Or, higher-level generated code (interpreted code, intermediate code that is not directly executable by the CPU, or a runtime abstraction library as used in Objective-C) can help better abstract such interfaces making them less leaky, redefining them in a more consistent way at the cost of avoiding some non-trivial static optimization that span large chunks of code. This results in somewhat slower code as some of the abstractions need to be handled by the interpreter or abstraction library at run-time. In some cases however this slower abstraction is either tolerable because it is not a performance bound or negligible because it is not a bottleneck.

In the case of intermediate code, just-in-time compilation in which optimization can be made at runtime based on such things as type information available, can be used to remedy this and result in performance that is often as good as statically optimized code. However, the increased complexity and non-deterministic performance can make it undesirable for some uses where low-level code would be desired.

link|improve this answer
feedback

The greatest pitfall of C++ is the all C++ code that has been written incorrectly. C++ is incredibly complicated and it doesn't offer much of a buffer from the complexity of writing code. Many things are blamed on C++ that has nothing to do with the language and everything to do with the usage of the language.

To be fair developers are human, my C++ is far from perfect so I too have to pay close attention to ensure that I use it correctly.

Regardless, I would be highly critical of any "you can't do X in C++" statements as this is almost always false for at least three reasons: 1) C++ is Turing complete thus if a certain functionality can be computed then it can be written in C++. 2) C++ is fast, if you need to do X in Y microseconds on Z hardware then C++ is often times your best bet. Even if the compiler isn't good enough C++ supports inline assembly and it doesn't get much faster than that. 3) Most of what people describe as language features are actually standard library features. Those same libraries in Java and C# can be ported to C++. Even GC can be done in C++.

Also, while C++ is very complex there are ways to mitigate the complexity of it. With a good library (3rd party or in house) many things can be made much simpler. C++ offers an incredible amount of control over the implementation syntax (operator overloads, macros, templates). Furthermore, with good development practices the complexity of C++ can be managed.

Now, some may suggest that this complexity is a pitfall of C++. However, the complexity exposed in C++ exists in the other languages as well, some languages just hide these issues better by providing a prepackaged solution. This will allow you to make things work quickly, but once one of those more complex and underlying issues becomes a problem it still needs to be understood and fixed. In C++ you can still still do those kinds of fixes.

There are still many things that can be improved with C++ and there is definitely a need for extensions to the standard library. The syntax could be made more expressive, and the inclusion of C in C++ is a bit contradictory. Also the compilation model as someone else here suggested, may be in need of an update.

link|improve this answer
1  
My issue with C++ is that everything you can do wrong with the language, is provided by the ++ part. C is good enough. – Matt Joiner Nov 14 '10 at 7:29
show 2 more comments
feedback

The biggest problem I see with C++ is the legacy it inherited from C. On top of that, it introduces a lot of unique runtime problems of its own which make it rather complicated to use across modules. For instance, exception handling and RAII, when used properly, can significantly reduce the efforts required for handling errors. Nevertheless, exceptions cannot be thrown across module boundaries. Memory cannot be allocated in one module and deallocated in another safely across module boundaries. This is true of C, but becomes a greater problem in C++ with template containers which can easily cause memory allocation/deallocation mismatches.

The lack of memory management isn't necessarily a weakness. The language provides you with the building blocks to implement any kind of memory management system you can imagine, and there are plenty of libraries available to do this for you. It doesn't have an integrated garbage collector like Java, yet one can develop one if desired.

That said, this is somewhat idealistic. Many programmers still continue to rely on manual resource cleanup in spite of having all the tools to automate it. Modern C++ thinkers like Sutter suggest going so far as to use nothing but smart pointers for all memory management so that there isn't a single instance in your code where you're manually freeing memory. This might seem excessive yet this kind of strict conformance is typically required for a team to successfully develop very robust, large-scale applications, especially when exceptions are involved.

A lot of the power of C++ is that it doesn't assume too much at the language level, allowing one to achieve very expressive code and even implement DSELs directly in C++. The lack of memory management enforced at the language level is but one example of this. The problem with that is that sometimes people try to get a little too creative and end up with something that might seem brilliant at the time but is actually very awkward and problematic to use in practice.

C++, being such a general-purpose language and one which makes very few assumptions at the language level, is a language which has great appeal to those who take it seriously. It is riddled with problems, but there's a tremendous difference which is probably one of the reasons it has die-hard enthusiasts like myself.

When we run into a language barrier in many other languages which causes systemic problems in the code your team produces, there's little we can do about it but work around it. As an example, there is no really elegant solution to deal with resource cleanup in Java and people often neglect to cleanup resources properly in the finally block. In C++, there are plenty of solutions available that people have built on top of the language (ways to implement RAII) since these kinds of things are not language-level problems in C++: while the language doesn't always provide solutions, it doesn't restrict solutions either.

This kind of freedom is probably one of the greatest appeals of C++ just from a pure language standpoint without considering other factors like efficiency. It has also lead to a lot of exploration and experimentation which has caused truly elegant and superior solutions to bubble up, yet those solutions are often awkward when it comes to implementation because they are built on top of such a general-purpose language with no specific accommodations for such solutions.

This kind of freedom is also the language's downfall. Too many self-proclaimed gurus tend to get creative and devise solutions to problems which have already been solved, and their solutions are often inferior to those which have been accepted and reviewed. Consider how many people have implemented their own reference-counted smart pointer in C++ without considering polymorphism, capturing on-site deletion, and the need for weak references. If C++ is going to move forward, more developers need to focus on the solutions that have worked and why they have worked rather than abusing the freedom that the language provides to roll their own solutions when superior solutions already exist. When it comes to C++, there's much more to learn than just the language itself; the freedom requires that we carefully study how it can be used effectively since there are too many ways to use it ineffectively.

The language also needs to evolve with these new discoveries and trends which it fortunately appears to be doing with C++0x, albeit slowly.

link|improve this answer
show 1 more comment
feedback

A lot of apologist for C++ have had their say. Here's mine:

I started programming in C++ around 1989/90. Presented a paper on enhancing C++ at OOPSLA '93. Interacted with Stroustroup regarding this enhancement, which he favored at the time. (Met up with him at conf. in Portland and started many months dialog from that point.)

Used C++ professionally up until probably writing last code in it around 2005.

These days in enterprise development I use mostly Java. Have also used C# for many things. I never really encounter anything anymore that would justify pulling C++ back out of the closet.

Bottom line for me is that Java and C# are both way more productive to write most kinds of entrprise-related software in than C++. Any claim that C++ attempts to make over performance, etc., is usually irrelevant (or not even entirely true given steady improvements in VMs over the years) - relative to the cost of producing the software. There is just not much occasion in the software I've written during this decade that C++ could make a viable argument for itself.

Folks that do commercial game software still rely heavily on it. Much of the serious OS kernel and related software is written in C (or Objective C). There is still some embedded development activity too for devices, etc. But in mainstream software, and particularly the web related and enterprise stuff, there's no need for, nor rationale that makes any persuasive case for C++. It's way too expensive to develop in relative to the much better alternatives.

link|improve this answer
4  
Since when was embedded software, games, operating systems, device drivers, video/audio codecs, simulations, telecoms, mobile phone software, etc etc any less "mainstream" than any other software? Just because it is not what you do does not make it a fringe activity. – Dipstick Dec 22 '08 at 15:15
2  
Well, these are entirely legitimate areas of software development. I merely meant that enterprise IT and web software are the predominate areas. The languages favored in those realms have shoved C++ aside for the most part, and continues to trend that way. – RogerV Dec 24 '08 at 5:51
1  
@Dipstick, RogerV: You're both right. – Matt Joiner Nov 14 '10 at 7:33
feedback
1 2

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