• ThyTTY@lemmy.world
        link
        fedilink
        arrow-up
        24
        arrow-down
        2
        ·
        27 days ago

        It would say Prototype­Filter­Stub­Facade­Bridge­Decorator­Task­Request­Map­Event­Exporter­Info­Model­Request­Iterator

      • marcos@lemmy.world
        link
        fedilink
        arrow-up
        9
        arrow-down
        2
        ·
        27 days ago

        I’m just not sure what the middle guy would be saying

        “I hate inheritance! I hate inheritance! I hate inheritance! I hate inheritance!”

        But well, inheritance goes brrrrrr.

        • erp@lemmy.world
          link
          fedilink
          arrow-up
          4
          ·
          26 days ago

          We all get disappointed when we don’t inherit anything useful…just a garage full of confusion

    • erp@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      26 days ago

      Inheritance starts to suck > 1 level deep. Multiple inheritance starts to suck at the point people discuss adding it to a language, or a few femtoseconds after the big bang, whichever comes first.

    • parlaptie@feddit.de
      link
      fedilink
      arrow-up
      10
      ·
      26 days 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
        4
        ·
        25 days 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.

  • MajorHavoc@programming.dev
    link
    fedilink
    arrow-up
    56
    arrow-down
    6
    ·
    27 days ago

    Interfaces are great.

    Inheritance is often a sign that the previous developer didn’t understand interfaces.

      • MajorHavoc@programming.dev
        link
        fedilink
        arrow-up
        26
        arrow-down
        2
        ·
        27 days ago

        Yep. I’m old, cranky, and prone to broad statements to get reactions.

        That said, for any of you all that love inheritance, I’m judging you so hard. So hard. Very judged. I probably hate your code, and your friends’ code, and your last teacher’s code. Especially your last teacher’s code.

    • azertyfun@sh.itjust.works
      link
      fedilink
      arrow-up
      4
      arrow-down
      9
      ·
      26 days ago

      Anyone who praises FP is either a student, works primarily in academia, or otherwise never had to look at a deep stack trace in their life.

      Every time a production system spits out a backtrace that’s just 15 event loop calls into a random callback, I lose 6 months life expectancy. Then I go look at the source, and the “go to definition” of my LSP never works because WHY WOULD IT, IT’S ALL FUNCTIONAL hapi.register CALLS

      I hate it I hate it I hate it I hate it. I support UBI because the people pushing functional programming in real production systems should be reassigned to gardening duties.

      • Miaou@jlai.lu
        link
        fedilink
        arrow-up
        8
        arrow-down
        1
        ·
        26 days ago

        I have the same problem with oop. 10 levels of encapsulated calls just to see you were in an overridden methods without enough data to find out which implementation it was. Ugh

        • azertyfun@sh.itjust.works
          link
          fedilink
          arrow-up
          4
          arrow-down
          3
          ·
          26 days ago

          I mean, bad programming sucks regardless of the “paradigm” (and vice-versa, mostly). But as someone whose job it often is to sift through production logs hunting for an issue in someone else’s component, at least I have a chance with OOP, because its behavior is normally predictable at compile time. So with the source and the backtrace I can pretty reasonably map the code path, even if the spaghetti is 300 calls deep.

          Now where shit really hits the fan is OOP with dependency injection. Now I’m back to square 1 grepping through 15 libraries because my LSP has no idea where the member comes from. Ugh.

      • arxdat@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        20 days ago

        I’m not advocating one way or the other, but I would gladly take on the gardening duties :D

  • anyhow2503@lemmy.world
    link
    fedilink
    arrow-up
    38
    ·
    27 days ago

    I haven’t used TypeScript in a classically OOP way and it never felt like I was being urged to do so either.

    • Armand1@lemmy.world
      link
      fedilink
      arrow-up
      11
      ·
      edit-2
      26 days ago

      I’ve worked on projects with 10 000+ lines of typescript and maybe 3 classes total.

        • Armand1@lemmy.world
          link
          fedilink
          arrow-up
          6
          ·
          26 days ago

          Of course, but OOP is typically about putting methods on classes, inheritance of behaviour etc.

          JS Objects aren’t typically used that way, they tend to be used as pure data containers. At least, that’s how we mostly use them.

          Occasionally, we’ll use objects to simplify passing multiple arguments including arrow functions, but I’d say that doesn’t really count unless the arrow function mutates the object it’s a part of.

          • Ethan@programming.dev
            link
            fedilink
            English
            arrow-up
            2
            ·
            26 days ago

            Of course, but OOP is typically about putting methods on classes, inheritance of behaviour etc.

            You’re referring to one subtype of OOP. That may be what most people mean when they say OOP, but that doesn’t make it correct. Object-oriented programming is programming with objects, which does not require inheritance or classes.

            • Miaou@jlai.lu
              link
              fedilink
              arrow-up
              5
              ·
              26 days ago

              With such a broad definition you could call even Haskell an oop language

              • Ethan@programming.dev
                link
                fedilink
                English
                arrow-up
                1
                arrow-down
                1
                ·
                24 days ago

                So you’re arguing that “Object oriented” shouldn’t apply to languages that are oriented around objects?

          • olafurp@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            26 days ago

            And maybe you have some functions that interact with them but don’t keep them super public so they’re only used by specific modules/store/redux thingy?

  • kibiz0r@midwest.social
    link
    fedilink
    English
    arrow-up
    38
    ·
    27 days 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
      13
      ·
      27 days 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.

      • modeler@lemmy.world
        link
        fedilink
        arrow-up
        12
        arrow-down
        1
        ·
        26 days 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
          3
          ·
          26 days 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
            2
            ·
            25 days 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.

      • Heavybell@lemmy.world
        link
        fedilink
        English
        arrow-up
        11
        ·
        27 days 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
          4
          ·
          26 days 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.

      • ScreaminOctopus@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        7
        ·
        26 days 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.

      • englislanguage@lemmy.sdf.org
        link
        fedilink
        arrow-up
        6
        ·
        26 days 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
          7
          ·
          26 days 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.

      • masterspace@lemmy.ca
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        26 days 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
          2
          ·
          26 days 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.

      • Miaou@jlai.lu
        link
        fedilink
        arrow-up
        1
        ·
        26 days ago

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

        • CapeWearingAeroplane@sopuli.xyz
          link
          fedilink
          arrow-up
          1
          ·
          25 days ago

          I am very fond of the idea of “stateless” code, which may seem strange coming from a person that likes OOP. When I say “stateless”, I am really referring to the fact that no class method should ever have any side-effect. Either it is an explicit set method, or it shouldn’t affect the output from other methods of the object. Objects should be used as convenient ways of storing/manipulating data in predictable/readable ways.

          I’ve seen way too much code where a class has methods which will only work"as expected" if certain other methods have been called first.

    • Blemgo@lemmy.world
      link
      fedilink
      arrow-up
      42
      ·
      26 days ago

      I think the main problem is that people try to shoehorn OOP mechanics into everything, leading to code that is hard to understand. Not to mention that this is basically encouraged by companies as well, to look “futuristic”. A great example of this approach going horribly wrong is FizzBuzz Enterprise Edition.

      OOP can be great to abstract complex concepts into a more human readable format, especially when it comes to states. But overall it should be used rarely, as it creates a giant code overhead, and only as far as actually needed.

      • RandomException@sopuli.xyz
        link
        fedilink
        arrow-up
        6
        ·
        26 days ago

        Oh no, the FizzBuzz EE has evolved since I’ve last viewed it! 😱 Is it bad if it actually reminds me of my current work project’s backend (that I haven’t written) a bit?

      • seth@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        25 days ago

        I got as far as seeing they chose Java and opening the constants file, and immediately executed a strategic withdrawal. I love that people went to this level of detail

    • Valmond@lemmy.world
      link
      fedilink
      arrow-up
      13
      ·
      26 days ago

      People (sometimes) use it far too much and in wrong ways.

      Like inherit when you could just instantiate, or use a template.

      Or when “everything should be a class” was also a bummer (inhetit “run()”), like I’d instantiate “main” twice (cool if it had worked I guess).

      Or old code written by “wizards” where they cast cast cast instances onto other classes to use specific behaviour in crazily dangerous manners. And you’re the one to “fix it” because it doesn’t work well…

      Otherwise OOP is good.

      • zalgotext@sh.itjust.works
        link
        fedilink
        arrow-up
        14
        ·
        26 days ago

        Just like any software design principle, it’s understood at a surface level by tons of bad developers who then try and solve every problem with that one principle. Then slightly better developers come along and say “ugh this is gross, OOP is bad!” And then they avoid the principle at all costs and tell everyone how bad it is at every opportunity.

    • PeriodicallyPedantic@lemmy.ca
      link
      fedilink
      arrow-up
      13
      arrow-down
      2
      ·
      26 days ago

      There are common traps and employer don’t spend money/time to train their devs to avoid them.

      SOLID principles are pretty decent but a surprising number of people don’t do any of them

    • HStone32@lemmy.world
      link
      fedilink
      arrow-up
      4
      arrow-down
      3
      ·
      26 days ago

      If you ask me, the only reason for objects to exist are for preventing stale references. Anything more than this is unnecessary.

  • Artyom@lemm.ee
    link
    fedilink
    arrow-up
    13
    ·
    26 days 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.

    • lseif@sopuli.xyz
      link
      fedilink
      arrow-up
      3
      ·
      26 days 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
      2
      ·
      25 days 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.

    • Gonzako@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      25 days ago

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

  • olafurp@lemmy.world
    link
    fedilink
    arrow-up
    16
    arrow-down
    6
    ·
    26 days 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
      1
      ·
      26 days ago

      Inheriting from inherited class should be forbidden.

      so an interface with state?

      • olafurp@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        25 days ago

        Those are nice. Services that manage data are an example. Having the class also declare how to interact with the data is nice.

        My most OOP pattern I like using is implementing an interface with an abstract class for “standard” implementation. Then implement abstract methods for a concrete thing.

      • herrvogel@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        25 days 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.

  • xmunk@sh.itjust.works
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    27 days ago

    Uh… from Caml? Because OCaml’s object support is the least surprising part of the language.

  • lorty
    link
    fedilink
    arrow-up
    6
    ·
    26 days ago

    Its a great way to make simple code 300% bigger than necessarily.