• JackbyDev
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 day ago

    Is there any reason an OO language couldn’t have a borrow checker? Sure, it would be wildly more complex to implement but I don’t see how it’s impossible.

    • magic_lobster_party@fedia.io
      link
      fedilink
      arrow-up
      1
      ·
      12 hours ago

      OO languages typically use garbage collector. The main purpose of the borrow checker is to resolve the ambiguity of who is responsible for deallocating the data.

      In GC languages, there’s usually no such ambiguity. The GC takes care of it.

    • nous
      link
      fedilink
      English
      arrow-up
      1
      ·
      14 hours ago

      I would argue that rust has a very strong OO feature set (it just lacks inheritance which is the worst OO feature IMO). It is not seen as an OOP language as it also has a very strong functional and procedural feature set as well and does not favor one over the other letting you code in any style that best fits the problem you have.

      So I would not say OO and a borrow checker are impossible or even hard. What makes less sense is a GC and the borrow checker. Though there are some use cases for having a GC for a subset of a program.