• lysdexic@programming.devOPM
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 months ago

        Cpp should have done ref by default and had & for copy, but here we are.

        That would defeat the goal of making it backwards-compatible with C.

    • Miaou
      link
      fedilink
      arrow-up
      3
      ·
      10 months ago

      Copy has a very different meaning between the two languages. In rust the equivalent of a c++ copy is a clone() call for anything non trivial

          • Miaou
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            10 months ago

            That’s a common idiom but the default behaviour is still implicit copy, which, with VLAs and no smart pointers, makes things arguably worse than in c++

        • Miaou
          link
          fedilink
          arrow-up
          1
          ·
          10 months ago

          I thought that was obvious as I mentioned a function call, but yes indeed