• BatmanAoD@programming.dev
      link
      fedilink
      arrow-up
      8
      ·
      17 days ago

      I’ve met people with C++ Stockholm Syndrome, and I think their trajectory is different. There’s no asymptotic approach toward zero; their appreciation just grows or stays steady, even decades into their career.

    • ZILtoid1991@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      15 days ago

      Stockholm Syndrome + Sunk Cost Fallacy + some of the better languages have lackluster corporate backing and/or third party libraries

  • parpol@programming.dev
    link
    fedilink
    arrow-up
    30
    arrow-down
    4
    ·
    17 days ago

    You start out with negative knowledge in C++, then as you just hear the name for the first time, you get your balls stepped on, jizz, and then get post-nut clarity.

    • Vlyn@lemmy.zip
      link
      fedilink
      English
      arrow-up
      30
      ·
      17 days ago

      Well, there’s modern C++ and it looks reasonable, so you start to think: This isn’t so bad, I can work with that.

      Then you join a company and you find out: They do have modern C++ code, but also half a million lines of older code that’s not in the same style. So there’s 5 different ways to do things and just getting a simple string suddenly has you casting classes and calling functions you have no clue about. And there’s a ton of different ways to shoot your foot off without warning.

      After going to C# I haven’t looked back.

      • 5C5C5C@programming.dev
        link
        fedilink
        arrow-up
        15
        ·
        edit-2
        17 days ago

        And even if you do get to use pure modern C++ you’ll still get burned by subtle cases of undefined behavior (e.g. you probably haven’t memorized every iterator invalidation rule for every container type) that force you to spend weeks debugging an inexplicable crash that happened in production but can only be recreated in 1/10000 runs of your test suite, but vanishes entirely if you compile in debug mode and try to use gdb.

        And don’t even get me started on multi-threading and concurrency.

    • RoyaltyInTraining@lemmy.world
      link
      fedilink
      arrow-up
      7
      arrow-down
      2
      ·
      17 days ago

      It’s a decent language I guess. My main criticism is that the constructor paradigm just isn’t well suited for RAII. I always find myself retrofitting Rust’s style of object creation into my C++ code.