• kibiz0r@midwest.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said “Master, I have heard that objects are a very good thing - is this true?” Qc Na looked pityingly at his student and replied, “Foolish pupil - objects are merely a poor man’s closures.”

    Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire “Lambda: The Ultimate…” series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.

    On his next walk with Qc Na, Anton attempted to impress his master by saying “Master, I have diligently studied the matter, and now understand that objects are truly a poor man’s closures.” Qc Na responded by hitting Anton with his stick, saying “When will you learn? Closures are a poor man’s object.” At that moment, Anton became enlightened.

    • CapeWearingAeroplane@sopuli.xyz
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Can someone please enlighten me on what makes inheritance, polymorphism, an operator overloading so bad? I use the all regularly, and have yet to experience the foot cannons I have heard so much about.

      • Miaou@jlai.lu
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        Having to run a debugger to know what gets called at a given time is awful, and this oop practices exacerbate this

      • modeler@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        I don’t think that the anti-oop collective is attacking polymorphism or overloading - both are important in functional programming. And let’s add encapsulation and implementation hiding to this list.

        The argument is that OOP makes the wrong abstractions. Inheritance (as OOP models it) is quite rare on business entities. The other major example cited is that an algorithm written in the OOP style ends up distributing its code across the different classes, and therefore

        1. It is difficult to understand: the developer has to open two, three or more different classes to view the whole algorithm
        2. It is inefficient: because the algorithm is distributed over many classes and instances, as the algorithm runs, there are a lot of unnecessary calls (eg one method on one instance has to iterate over many instances of its children, and each child has to iterate over its children) and data has to pass through these function calls.

        Instead of this, the functional programmer says, you should write the algorithm as a function (or several functions) in one place, so it’s the function that walks the object structure. The navigation is done using tools like apply or map rather than a loop in a method on the parent instance.

        A key insight in this approach is that the way an algorithm walks the data structure is the responsibility of the algorithm rather than a responsibility that is shared across many classes and subclasses.

        In general, I think this is a valid point - when you are writing algorithms over the whole dataset. OOP does have some counterpoints encapsulating behaviour on just that object for example validating the object’s private members, or data processing for that object and its immediate children or peers.

        • CapeWearingAeroplane@sopuli.xyz
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          Sounds reasonable to me: With what I’ve written I don’t think I’ve ever been in a situation like the one you describe, with an algorithm split over several classes. I feel like a major point of OOP is that I can package the data and the methods that operate on it, in a single encapsulated package.

          Whenever I’ve written in C, I’ve just ended up passing a bunch of structs and function pointers around, basically ending up doing “C with classes” all over again…

          • TheHarpyEagle@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            4 months ago

            Indeed, I’d say an algorithm split among different objects is usually an indication of tightly coupled code. Every code pattern has its pitfalls for inexperienced devs, and I think tight coupling is OOP’s biggest.

      • ScreaminOctopus@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        I don’t really think it’s any of those things in particular. I think the problem is there are quite a few programmers who use OOP, especially in Java circles, who think they’re writing good code because they can name all the design patterns they’re using. It turns out patterns like Factory, Model View Controller, Dependency Injection etc., are actually really niche, rarely useful, and generally overcomplicate an application, but there is a subset of programmers who shoehorn them everywhere. I’d expect the same would be said about functional programming if it were the dominant paradigm, but barely anyone writes large applications in functional languages and thus sane programmers don’t usually come in contact with design pattern fetishists in that space.

      • masterspace@lemmy.ca
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        4 months ago

        Because an object is good at representing a noun, not a verb, and when expressing logical flows and concepts, despite what Java will tell you, not everything is in fact, a noun.

        I.e. in OOP languages that do not support functional programming as first class (like Java), you end up with a ton of overhead and unnecessary complications and objects named like generatorFactoryServiceCreatorFactory because the language forces you to creat a noun (object) to take an action rather than just create a verb (function) and pass that around.

        • CapeWearingAeroplane@sopuli.xyz
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          This makes sense to me, thanks! I primarily use Python, C++ and some Fortran, so my typical programs / libraries aren’t really “pure” OOP in that sense.

          What I write is mostly various mathematical models, so as a rule of thumb, I’ll write a class to represent some model, which holds the model parameters and methods to operate on them. If I write generic functions (root solver, integration algorithm, etc.) those won’t be classes, because why would they be?

          It sounds to me like the issue here arises more from an “everything is a nail” type of problem than anything else.

      • englislanguage@lemmy.sdf.org
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        Operator overloading is adding complexity, making code subtly harder to read. The most important lesson for code is: It should primarily be written to be easy to read by humans because if code is not trash, it will be read way more often than written.

        • CapeWearingAeroplane@sopuli.xyz
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          I would argue that there are very definitely cases where operator overloading can make code more clear: Specifically when you are working with some custom data type for which different mathematical operations are well defined.

      • Heavybell@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        If the only tool you have is a hammer, everything looks like a nail.

        That’s the only thing I can think to answer your question. There are some problems that are best solved with other tools, like text parsing for example you might want to call out to some code written in a functional language.

        • CapeWearingAeroplane@sopuli.xyz
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          Oh, thanks then! I’ve heard people shred on OOP regularly, saying that it’s full of foot-canons, and while I’ve never understood where they’re coming from, I definitely agree that there are tasks that are best solved with a functional approach.

    • parlaptie@feddit.de
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      There’s the camp of those who say that inheritance is synonymous with OOP. I’m not in that camp, but I’d like to see you duke it out with them.

      • HereIAm@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        You will still have private/public sections, interfaces (unless you class them as inheritance), classes and instances, the SOLID principles, composition over inheritance. OOP is a lot more than just large family trees of inheritance, a way of thinking that’s been moved away from for a long time.

  • Artyom@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    Inheritance makes complicated objects that would otherwise be impossible possible, but it only works if you know those objects really well. The problem is people write ridiculously complicated mystery objects in libraries and no one knows what’s going on anymore.

    • Gonzako@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Tho, C# is statically typed so you can look at the available methods any one library has at any time in the IDE

    • lseif@sopuli.xyz
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      that, and that its often not the best use of time to map out the entire project structure in uml before u even write a method…

    • platypus_plumba@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Springboot is very confusing. The inheritance tree is insane, they created a class for everything, which I get… But it is so hard to understand the whole scope their design.

    • whoareu@lemmy.ca
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      It’s not that hard however I think it’s absolutely useless and doesn’t add any value to the code.

  • Caveman@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    Using classes is nice tbh. Using inheritance usually isn’t. Inheriting from inherited class should be forbidden.

    • lseif@sopuli.xyz
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Inheriting from inherited class should be forbidden.

      so an interface with state?

  • JoYo@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    C++ classes are fairly optional but if you’re already using cpp then it likely wasn’t your choice and neither will the choice of OOP.

    • Buddahriffic@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Yeah, I like the sweet spot that C++ is in. It can do anything C can but then you have classes and STL and all that on top of it.

      • JoYo@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        once i learned about defer it became a hard requirement. cpp kinda gives me that but other c like languages do it better.

        • Buddahriffic@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          Yeah, I wish C++ had function/scope epilogs and labeled loops/breaks, too. Those are the cases where the “never use goto” rule can be broken to make better code than adding all of the code that would be required to handle it the “right” way (setting up early exit flags and if statements after each level of nested loop to check the flag).

  • HStone32@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    I used to think I was just a fanboy. But as time went on and I gained more and more experiences, I’ve only become all the more sure that ANSI C is the only language I ever want to write anything in.

    • Jears@social.jears.at
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      I was the same, but I recently gave zig a try, it’s lovely to write.

      Managed to segfault the compiler though, so maybe not quite ready yet.

      • herrvogel@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        Excuse me if I don’t appreciate when the compiler adamantly refuses to do its job when there’s one single unused variable in the code, when it could simply ignore that variable and warn me instead.

        I also don’t enjoy having to format datetime using what’s probably the most reinventing-the-wheel-y and most weirdly US-centric formatting schemes I have ever seen any programming language build into itself.