• thingsiplay@beehaw.org
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    16 hours ago

    C++ innovates often first and adapts it into mainstream. And its kind of a swiss-army knife. You don’t need to use and learn everything, just pick what you need. Unless you need to get into an old existing code base…

    Just an idea: The language could be divided into multiple standard levels, where each level has more features and functionality. It would be essentially a “restricted”, “standard” and “full” version of the language, where full is basically what it is now and the others are constrained versions with less functionality (no multiple inheritance and what not rules). But at this point, if you don’t use the language in its full, why bother with it at all? Just thinking a bit…

    • lad@programming.dev
      link
      fedilink
      English
      arrow-up
      5
      ·
      13 hours ago

      You don’t need to use and learn everything, just pick what you need.

      I used to think the same, but now I think you should at least skim through everything. Reason being otherwise you may reinvent the wheel a lot, and there are many use-cases where you really don’t want to do that (but C++ makes it so easy, I was constantly tempted to just do what I want and not look for it being already available)

      • Troy@lemmy.ca
        link
        fedilink
        arrow-up
        3
        ·
        9 hours ago

        This gets even more complex if you’re using a toolkit of some sort. C++ has a batteries-included way of doing something, then STL has another, and Qt yet another… Etc.