vote up 34 vote down star
49

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..

flag
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 12 more comments

49 Answers

prev 1 2
vote up 1 vote down

You name it { First ANSI X3J16 technical meeting 1990}:

alt text

link|flag
1  
No, I am not. softwarepreservation.org/projects/c_plus_plus/… – Comptrol Apr 22 at 22:58
show 1 more comment
vote up 1 vote down

There is a relevant discussion here:

C++ - Anyone else feel like C++ is getting too complicated?

link|flag
vote up 1 vote down

First everyone should admit that learning curve for c++ is really steep.People are in a hurry to use feature before learning it completely and correctly.

  1. There is more than one way of doing thing in c++.So people stick with one they are good in,but when they come across others way it look little alien.
  2. We tend to spend more time in learning language rather than with solving the actually problem.
  3. We tend to write compiler dependent code with out even knowing it is.
  4. When using pointer we should know about the low level things on the other hand we should forget the same while using high level containers like std::vector.
  5. Undefined things in c++
link|flag
show 5 more comments
vote up 1 vote down

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|flag
vote up 0 vote down

There are just other languages and platforms that make certain things trivial to do, that would require hours to do it C/C++.

But other things that can be easily done in C/C++ are themselves often painful in languages that feature higher levels of abstraction. This is becoming less frequent though as the newer platforms evolve and mature.

link|flag
show 1 more comment
vote up 0 vote down

Well, I don't like C++ because it doesn't have the CPAN! My current regular language is Java; I'd prefer Java to C++ because (I believe) the JDK includes so many more standard libraries than C++. But I prefer Perl over that because CPAN has so many more libraries available on it.

When I want to write a program in Perl, I check out what CPAN has and build on it. If I'm wanting to do something with FTP, for example, there's a CPAN library (or two or three or four) to make it easy and let me focus on the unique part of my program, rather than opening socket connections and feeding it bytes. More importantly, there's CPAN libraries for things much more unusual and unique than FTP. You name it, somebody's taken a stab at it on CPAN.

In Java the situation is different. Opening FTP and HTTP connections is builtin, as is parsing XML (and HTML? can't remember). But if I have to go outside of what comes standard with the JDK, I'll have to look around the entire Internet rather than just one comprehensive archive that attempts to attract everything and even has private groups offering quality ratings. And despite the language being so much more popular and the fact that Java code is available across the entire Internet rather than just in one place, the fact is that the odds of finding a library to do what I want are usually lower in Java. Very often it's not that I can't find the library; it's that it doesn't exist. Or, rather, crappy implementations exist in thousands of companies, and they will never be released for everybody to pool their resources on and generate a high-quality version on which many people can build.

The situation in C++ is worse. You've got the standard template library (which I used in my shortlived C++ days), and you've got Boost (which I only know about in passing). And I'm sure there's other libraries out there. But there's less of it than even Java has.

I'd use C++ in a heartbeat if an employer made me a good deal on it. I'm not prejudiced against the language. But I do know that other languages have technical and cultural reasons that make modules, libraries, and extensions much easier and therefore much more plentiful, and I will always like that better.

link|flag
show 3 more comments
vote up 0 vote down

I spent 4 years learning/writing C++. Now I am mainly a .NET developer.

I generally avoid using C++ except when I am working on a module that is dealing with complex computations.

Also it is very un practical to deal with un managed code these days.

link|flag
vote up 0 vote down

The only thing I really wish for in C++ was thread support in the language. (But I suppose that is coming?)

link|flag
show 1 more comment
vote up 0 vote down

There is nothing wrong with it , as long as you can learn a language from its Standard. The lack of ability to learn from Standard shouldn't be C++'s fault. It is Human Being's fault!

link|flag
vote up 0 vote down

Programmers hate C++ because it reminds them that programming is difficult. I mean, do we have to warp our brains around Boost templates all the time? Do we have to be told the difference between const and non-const (that's to not mention volatile) all the time? Why can't everything be non-const and that's the end of the problem? Oh, I see. When it's const, the compiler can perform some optimizations it can't when it isn't const. But, dammit, how does that reflect into something I can actually see, touch, smell, whatever? How many picoseconds of processor time am I saving by not using, say, Visual Basic and getting the thing done in 10x less time?

When I was at high school, I had a similar experience with grammar and syntactic analysis. The abstraction needed to parse those long sentences into subjects, predicates, complements, etc. was above what our little brains were willing to perform. It became worse when there were nested sentences ("I wish I had studied before the exam.", "She said she had done her homework when, in fact, she hadn't.", "The boy who ate her pie went away five minutes before she came."). It's the high school equivalent of programmers hating C++.


By the way, I happen to like C++. And I didn't dislike syntactic analysis when I was at high school, mainly because I was learning how to write (lame LL(1)) parsers, and I was excited with this language processing thing. But maybe that's because I'm an nerd with no life.

link|flag
vote up 0 vote down

Have you ever seen a C++ program that never crashed?

link|flag
vote up 0 vote down

What annoys me no end is that there isn't a singe string class. Half the time I spend converting strings from one type to another.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Hear Jeff Atwood's opinion on this.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

I find C++ quite cool.

One drawback: the lack of default (read STL) powerful buffered I/O, especially compared to C#. Indeed you're free to optimize the bottleneck, but having it by default is great.

link|flag
vote up -1 vote down

C++ is soon as perfect as much as my ability and this is for any language.

link|flag
vote up -2 vote down

The problem is that C++ is a renowned-rapist:

According to researches, C++ programmers have Stockholm Syndrome. Because, they first get raped by C++ itself during the learning curve, and can't abandon it aftermath!

link|flag
vote up -3 vote down

Here's a book-length list of what is wrong with C++, called the C++ Frequently Questioned Answers. I would not start a new project in C++ unless it was performance-critical. But if C++ works for you and suits your need, please feel free to ignore the previous sentences.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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