C++ in Coders at Work

One of the topics I asked most of my Coders at Work interviewees about was C++. I am not an expert, or even a competent C++ programmer and recognize that my own opinions about C++ are not well-informed enough to be worth much.1 But C++ fascinates me—it’s obviously a hugely successful language: most “serious” desktop apps are still written in C++ despite the recent inroads made by Objective C on OS X and perhaps some C# on Windows; the core of Google’s search engine is written in C++; and C++ dominates the games industry. Yet C++ is also frequently reviled both by those who never use and by those who use it all the time.

That was certainly reflected in the responses I got from my Coders interviewees when I asked them about it. Jamie Zawinski, as I’ve discussed recently, fought tooth and nail to keep C++ out of the Netscape code base (and eventually lost). Some of that was due to the immaturity of C++ compilers and libraries at the time, circa 1994, but it seems also to have to do with his estimation of the language as a language:

C++ is just an abomination. Everything is wrong with it in every way. So I really tried to avoid using that as much as I could and do everything in C at Netscape.

Part of Zawinski’s issue with C++ is that it is simply too complex:

When you’re programming C++ no one can ever agree on which ten percent of the language is safe to use. There’s going to be one guy who decides, “I have to use templates.” And then you discover that there are no two compilers that implement templates the same way.

Note that Zawinski had started his career as a Lisp programmer but also used C for many years while working on Netscape. And he later enjoyed working in Java. So it’s not that C++ was either too high-level or too low-level for him or that he couldn’t wrap his head around object orientation.

Joshua Bloch, who also hacked low level C code for many years before becoming a big-time Java head, told me that he didn’t get into object-oriented programming until quite late: “Java was the first object-oriented language I used with any seriousness, in part because I couldn’t exactly bring myself to use C++.” He echoed Zawinski’s point about how C++ forces programmers to subset the language:

I think C++ was pushed well beyond its complexity threshold and yet there are a lot of people programming it. But what you do is you force people to subset it. So almost every shop that I know of that uses C++ says, “Yes, we’re using C++ but we’re not doing multiple-implementation inheritance and we’re not using operator overloading.” There are just a bunch of features that you’re not going to use because the complexity of the resulting code is too high. And I don’t think it’s good when you have to start doing that. You lose this programmer portability where everyone can read everyone else’s code, which I think is such a good thing.

Ken Thompson, who still mostly uses C despite working at Google which is largely a C++ shop, has had as long an exposure to C++ as just about anyone, having worked with with Bjarne Stroustrup, C++’s inventor, at Bell Labs:

I would try out the language as it was being developed and make comments on it. It was part of the work atmosphere there. And you’d write something and then the next day it wouldn’t work because the language changed. It was very unstable for a very long period of time. At some point I said, no, no more.

In an interview I said exactly that, that I didn’t use it just because it wouldn’t stay still for two days in a row. When Stroustrup read the interview he came screaming into my room about how I was undermining him and what I said mattered and I said it was a bad language. I never said it was a bad language. On and on and on. Since then I kind of avoid that kind of stuff.

At that point in the interview I almost changed the topic. Luckily I took one more try at asking for his actual opinion of C++. His reply:

It certainly has its good points. But by and large I think it’s a bad language. It does a lot of things half well and it’s just a garbage heap of ideas that are mutually exclusive. Everybody I know, whether it’s personal or corporate, selects a subset and these subsets are different. So it’s not a good language to transport an algorithm—to say, “I wrote it; here, take it.” It’s way too big, way too complex. And it’s obviously built by a committee.

Stroustrup campaigned for years and years and years, way beyond any sort of technical contributions he made to the language, to get it adopted and used. And he sort of ran all the standards committees with a whip and a chair. And he said “no” to no one. He put every feature in that language that ever existed. It wasn’t cleanly designed—it was just the union of everything that came along. And I think it suffered drastically from that.

Brendan Eich, the CTO of the Mozilla Corporation, whose Mozilla browser is written almost entirely in C++, talks about “toe loss due to C and C++’s foot guns” and when I asked him if there are any parts of programming that he doesn’t enjoy as much as he used to, he replied:

I don’t know. C++. We’re able to use most of its features—there are too many of them. It’s probably got a better type system than Java. But we’re still screwing around with ’70s debuggers and linkers, and it’s stupid. I don’t know why we put up with it.

At least among my interviewees, even the most positive comments about C++ tended to fall in the category of “damning with faint praise”. I asked Brad Fitzpatrick, who used C++ in college and again now that he’s at Google, whether he likes it:

I don’t mind it. The syntax is terrible and totally inconsistent and the error messages, at least from GCC, are ridiculous. You can get 40 pages of error spew because you forgot some semicolon. But—like anything else—you quickly memorize all the patterns. You don’t even read the words; you just see the structure and think, “Oh, yeah, I probably forgot to close the namespace in a header file.” I think the new C++ spec, even though it adds so much complexity, has a lot of stuff that’ll make it less painful to type—as far as number of keystrokes. The auto variables and the for loops. It’s more like Python style. And the lambdas. It’s enough that I could delude myself into thinking I’m writing in Python, even though it’s C++.

Dan Ingalls, who helped invent modern object oriented programming as part of Alan Kay’s team that developed Smalltalk, never found C++ compelling enough to use but isn’t totally adverse to using it:

I didn’t get that much into it. It seemed like a step forward in various ways from C, but it seemed to be not yet what the promise was, which we were already experiencing. If I had been forced to do another bottom-up implementation, instead of using machine code I would’ve maybe started with C++. And I know a couple of people who are masters of C++ and I love to see how they do things because I think they don’t rely on it for the stuff that it’s not really that good at but totally use it as almost a metaprogramming language.

Joe Armstrong, similarly, has never felt the need to learn C++:

No, C++, I can hardly read or write it. I don’t like C++; it doesn’t feel right. It’s just complicated. I like small simple languages. It didn’t feel small and simple.

And finally Guy Steele, who probably knows more about more languages than anyone I interviewed (or possibly anyone, period), has also not been drawn to C++. But he did go out of his way to try to say something nice about Stroustrup’s effort:

I have not been attracted to C++. I have written some C++ code. Anything I think I might want to write in C++ now could be done about as well and more easily in Java. Unless efficiency were the primary concern.

But I don’t want to be seen as a detractor of Bjarne Stroustrup’s effort. He set himself up a particular goal, which was to make an object-oriented language that would be fully backwards-compatible with C. That was a difficult task to set himself. And given that constraint, I think he came up with an admirable design and it has held up well. But given the kinds of goals that I have in programming, I think the decision to be backwards-compatible with C is a fatal flaw. It’s just a set of difficulties that can’t be overcome.

Obviously with only fifteen interviewees in my book I have only a sampling of possible opinions. There are great programmers who have done great work with C++ and presumably at least some of them would have had more enthusiastic things to say about it if I had spoken with them. But this is what I heard from the people I spoke with.


1. I think I once managed to read all the way through Stroustrup’s The C++ Programming Language and have looked at at least parts of The Design and Evolution of C++. But I have never done any serious programming in it. I have made a couple attempts to learn it just because I felt I should but in recent years I’ve mostly given up, thinking that perhaps Erik Naggum, scourge of Usenet, was right when he said: “life is too long to know C++ well.”

Advertisement

23 Responses to “C++ in Coders at Work”

  1. Isaiah Gilliland Says:

    I was wondering how you make money when you don’t program in C++? I too haven’t touched it but tried. I can’t stand the language. I feel most at home in Javascript, python, and any Lisp. I love Lisp but I don’t know how I can have a future on it.
    There is an idea going around that you can’t get anywhere if you don’t know C++. Which scares me because I’m 21, I just got married, and now I have a son. All the jobs I find are for C++, my father gets on my case for not using it, and now with a family I’m scared if I’ll be able to support them.
    For a person with a lot of responsibility who’s still basically in college, it’s pretty important.

  2. Peter Seibel Says:

    Isaiah, while it may be easier to find a job using C++ than Lisp, there are lots of languages people get paid to use. Ultimately if you’re going to make a living as a programmer, there are a lot of things more important than knowing a particular language–if you know how to write good code in one language you can probably learn another language without too much problem, even C++. Good luck!

  3. Eric Says:

    This C++ bashing is weird. C flourished on cheap hardware because you could write fast programs in it. C++ provided us with a better abtraction and organizing tool, and Moore’s Law allowed us to use it instead of C.

    During this current decade, I’ve often heard the term ‘hype’ to describe each new language that gains some mindshare. At least these languages are coming to prominence through a collective understanding of programming potential. Java’s introduction was true hype. For publishing companies, it was a bonanza. I don’t quite understand the push at universites, but it was obviously calculated. Fifteen years later, Java continues to be fantastically cryptic and heavy. Is it a good language? Arguably not. However, it had its place in the decade after its inception for creating an industry *around* solving problems with software.

    Any other (non-MS) language environments are by-and-large unstable, so it is not surprising that C++ still shows up in games or Google. However, I have no doubt that language choice is going to look very different over the next 5-10 years. Ragging on C++ seems passee.

  4. Ken Thompson on C++ « I, Geek Says:

    [...] an interview for Coders at Work [...]

  5. Coders at Work « Sean Voisen Says:

    [...] it as “a garbage heap of ideas that are mutually exclusive.” (Peter Seibel has a more thorough list of interview quotes on the design flaws and challenges of working with [...]

  6. C++ in Coders at Work « Interesting Tech Says:

    [...] Read more here Posted in Uncategorized , interesting, science, tech | No Comments » [...]

  7. aaron Says:

    You seem to glance of the fact there is no alternative. C++ has it’s flaws but no one is better at what it does. The most interesting software needs to have good performance: search engines, video games, dsp, artificial intelligence, etc. You can write things in C, but then you loose great abstractions like templates, and organization techniques like namespaces. Not to mention, c++’s evils are well known, its tools are mature, and there are tons of libraries. I’d love to see C++ dethroned, it just hasn’t happened yet.

  8. Varun Khaneja Says:

    s/adverse/averse

  9. Erik Says:

    While some keep whining about C++ others just get on with it, make great software and a lot of money…

    • Mike Taylor Says:

      I’m not sure you can make a serious argument that Jamie Zawinsky, Joshua Bloch, Ken Thompson, Brendan Eich, Brad Fitzpatrick, Dan Ingalls, Joe Armstrong and Guy Steele (the people quoted as “whining about C++”) have failed to make great software.

  10. Nick Mudge Says:

    I am still curious what your personal opinion of C++ is.

    • Peter Seibel Says:

      If that was addressed to me: I’ve never really learned it well enough to use in any serious way. And unlike some other languages that I’ve not gotten around to learning, I don’t particularly regret that or have any plans to rectify the situation.

  11. Markus Sandy Says:

    It’s all just tools in a toolbox. Some people use the best suited tool they can for a given job, others just learn a few tools and try to use them everywhere. Either way, who gives a fuck?

  12. Nasos Says:

    It is very hard for me to understand how professional programmers with years of experience, think like that for C++. I have used many languages and I always find C++ the most appropriate for almost anything as long as you achieve a certain level of maturity. And nothing is hard in it, you just need to start studying it the correct way and invest a few months focused on it.

    If you want to start working on C++ the way C++ is meant to be programmed I would suggest to look no further and try “Accelerated C++”- DON’T SKIP THAT BOOK. If you want some more advanced topics look at Alexandrescu’s “Modern C++Design”, Vandevoorde and Josuttis “C++ Templates” and Abrahams “Template Meta-progamming” (which is free by the way and I mainly find it useful for the mentality behind the feature direction of the language rather for the content).

    Ignoring corporate choices by Apple, MS and Google, the only existing language that I can see rivaling C++ is D, that is actually just starting to become mature.

  13. Marsh Ray Says:

    After having written hundreds of thousands of lines of C++, here are my opinions:

    The language is big and more complex than it needs to be.

    The subsetting issues are real, but this happens with any sufficiently-large system.

    The error messages from templates can be absurdly difficult to understand.

    There’s no other language that lets you write code with such high-level abstractions (e.g., its declarative, generative type system) *and* lets you reason about the actual machine code and its runtime performance.

  14. Pierre Says:

    I’ve made a good living with C++ (twenty years). I just avoid the unnecessary complexity. I’ve rarely found templates a boost to productivity. When it takes longer to understand something than it takes to write an alternative, I think we’ve reached the point of diminishing returns.

    MFC CStrings are 40 times slower than plain old char[]. The Standard Template Library strings are 200 times slower. You don’t care? How about your user having to wait 100 seconds instead of 0.5?

    The “Managed” C++ pointers (CLR) are ridiculous. Reminds me of the 28-cylinder Stratocruiser engines: the apotheosis of piston technology, they vibrated so much they broke away from the wings.

  15. Extern: C++ complexity and usability « Kissaki Blog Says:

    [...] C++ too complex? A combination of all possible programming techniques, where you can only use a subs… [...]

  16. Rob Thorpe Says:

    As Eric mentioned C++ was successful because of it’s back-compatibility and it’s hardware requirements. For many years on Windows, if you wanted to write a small, fast, graphical program in a high level language you only had two choices: VB and C++. That’s why they became so popular.

  17. Co++on Lisper Says:

    Peter, my long experience with C++ tells me that it is indeed an overly complicated language, in large because it is meant to be (mostly) backwards-compatible with C.

    I write this comment to tell you, however, that you should totally read D&E in full. It is a very interesting book, and Bjarne Stroustrup is a very clever chap. I’ve been reading Naggum posts, and I recall that his view of D&E and Stroustrup coincides with mine.

  18. Phu Nguyen Says:

    When reading and writing C++, I feel like I’m playing Barque music on an old organ. Many loose keys, the chords progressions deviate little, and the structure is tight just like verbose C++, strict types, and formal memory management.

    But it’s fun.

    It’s a different feeling than playing Debussy on a modern piano (Javascript/Lispish). They’re all fun, different, and not comparable. Languages shouldn’t be a pissing match between the right bags of features. If a deadline isn’t on the line, why not just use a language because that’s what you feel like playing with that day?

  19. Cowtowncoder Says:

    C++ may be a necessary evil; but places where it (or C, or other compiled-to-binary) language is needed has been and is shrinking. For example, there is absolutely no need to write search engines in C++; that is just due to inertia. Same will be true for databases; and eventually for all games (casual games already are moving on).

  20. Marthinus Says:

    I am a developer and I know C++ quite well and to be honest I don’t even put it on my Resume. I don’t want C++ jobs, but C++ is so entrenched everywhere that I always end up coding in C++ for at least 25% of my coding time at a company. I can still live with the 25% but I would like it to be 0%

    Anyway in truth I loved C++ 15 years ago and then I discovered Delphi on the Win32 platform, the apps were as fast as native win32 C++ but the language was so much easier.

    Now I am a full time C# / Java developer and only need to touch C++ on certain projects.

  21. Bounce Says:

    I like C++. Or at least the subset I use. You can do truly awful things in it. Yet you can do truly awful things in C too, and there it’s a sport. To me it’s a
    toolchest with all sorts of weird stuff in it and moreover it’s got some things I badly miss in C. I use those. Should I not need them for a particular project, I’ll happily switch back to C just to make the dependencies less complex.Or awk. Or shell. Or whatever else would fit solving the problem better. But then, using g++, I usually turn the non-standard extensions off, crank up the warnings, and write code as clean as I can. This is quite different from what apparently “most” other programmers like to do. I’m not trying to max out the language. I’m trying to get a reliable program.

    As to netscape, having dug through mozilla code, I think they’d've been better off without using C++. There’s useful abstractions in C++ but if your programmers don’t understand how to use them, don’t use them. That’s not just netscape’s problem though.And, of course, way back when it just wasn’t mature enough so plenty of what would be straight-forward now got reinvented with autogenerated preprocessor magic and lots more of C style baling spit and wire and whatnots and thingamabobs and Stuff. Maybe a whiff of NIH in there too. But anyway.

    If your programmer base gets big enough it’s more or less time for a domain specific language concocted by a very few language implementing gods who have looked long and hard at the needs of the rest of the programmer base. In that respect C++ is but an exponent of the general folly.

    C++ error messages certainly suck. Especially if you’re using deeply nested templates as found in certain STL implemetnations. But then, I never understood why java had to dump several pages of backtrace on my screen when all that really matters is the first two entries (each spanning five to ten lines already, why?). And only a very few people ever need those, at that. The majority is just /users/ and doesn’t understand any of it. Best keep that to compile time then.

    My own run-ins with java weren’t very good though. So it was 1997 and the university had just turned to it for primary teaching because that was cool or something. The ink in the textbooks was barely dry and they were full of bugs — like this gem: “the goto keyword is reserved for future use”. And forgot to mention little things like how the java system, by design, will barf, fall over and die, if you so much as put two different public classes in the same file. Oh the offense!

    Or the final static main thing or just what that particular hack was. It felt arbitrary like C’s main — I happen to understand how object files and
    init routines do their thing, and with that, main is simply an arbitrary convention — but also trying to replace simple convention with some sort of object oriented shoehorning. I quickly gave up after that. C++ is quirky but doesn’t lie about it. Most every wart and gimmick has a perfectly good rationale behind it once you understand the technicalities. Though admittedly those technicalities can be… pretty technical.

    I’m just now trying to learn lisp — again, this isn’t the first attempt, having previously acquired an actual copy of the wizard book (those don’t exactly grow on trees around here) and having run head-long into the math requirements. But the thing that time and again gets me is the sheer arrogance of each and every time, every single implementation and tutorial or book or howto, sneaking in a requirement to also learn emacs. Well, sod that. I like vi. In my case, nvi. And it edits files just fine, thank you. I positively absolutely empathically very much really don’t care that emacs is supposed to be better. That barrier to entrance should just not exist. Talk about completely irrelevant hurdles to learn a _language_.

    In comparison, that seems like an amazingly easy fix. Yet in the how many years now that it exists, nobody saw fit to actually do it. Or a compromise such as to simply respect $VISUAL.

    The point? Just about every language has its weird things. Python has (“funky indentation for fun and profit”), ruby has (“memory leaks considered acceptable”), and, well, you could go on forever. I’ll say that for some reason C++ is very widespread and also quite often ill-understood. No grasp of how to make functional interfaces or even what OO really entails. Maybe too many essentially disinterested wage code grinders. In a sense maybe the new COBOL. The language doesn’t exactly make it easy to “get it”, though once you do it’s a fine toolshed. Maybe that’s what turns people off: There’s plenty good in there, it’s just not very obvious to get it out. As I-forgot-who said, there’s a small and elegant language buried in there that’s yearning to get out.

Leave a Reply

Fill in your details below or click an icon to log in:

Gravatar
WordPress.com Logo

Please log in to WordPress.com to post a comment to your blog.

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s


Follow

Get every new post delivered to your Inbox.