Object Oriented Programming is Good | Prime Reacts

  Рет қаралды 326,287

ThePrimeTime

ThePrimeTime

Күн бұрын

Пікірлер: 729
@adambickford8720
@adambickford8720 Жыл бұрын
I don't like coding in OO *or* Java, but i like the house it bought me :shrug:
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
this is the way
@AMalevolentCreation
@AMalevolentCreation Жыл бұрын
Lmfao Amen
@probaddie456
@probaddie456 Жыл бұрын
real
@piecepaper2831
@piecepaper2831 Жыл бұрын
the house holding the garden, the garden holding the city, country, continent, world. universum.
@wernersmidt3298
@wernersmidt3298 Жыл бұрын
I commend you for your mental fortitude. Not being ironic - that takes extreme discipline.
@robmorgan1214
@robmorgan1214 Жыл бұрын
I really don't like logic based programming. I'm an emotional coder.
@johnnycripplestar5167
@johnnycripplestar5167 Ай бұрын
Personally... rage coder, just scream at it until it works.
@matiasalarcon5061
@matiasalarcon5061 15 күн бұрын
Underrated if you ask me.
@KvapuJanjalia
@KvapuJanjalia Жыл бұрын
I'm a big proponent of POOP: Procedural Object-Oriented Programming.
@СэрШпинат
@СэрШпинат 7 ай бұрын
php by accident is very good at POOP being procedural by default with Java style OOP as an add on
@leeroyjenkins0
@leeroyjenkins0 5 ай бұрын
Yes, we also do lots of poop-oriented programming in our teams.
@LapisOnTheMoon
@LapisOnTheMoon 5 ай бұрын
people order our patties
@cultofhercules
@cultofhercules Ай бұрын
You're suggesting a lavender marriage. Just let OOP go and move on with your life.
@J0R1AN
@J0R1AN Жыл бұрын
You know it’s gonna be good when the video is 3x longer than the video he is reacting to
@ttrss
@ttrss Жыл бұрын
did you do a minecraft thing?
@J0R1AN
@J0R1AN Жыл бұрын
@@ttrss Bit late, but I've had some fun in Minecraft yeah 😉
@user-mc4rr9fe6y
@user-mc4rr9fe6y Жыл бұрын
especially when he speeds it up halfway through
@bleack8701
@bleack8701 9 ай бұрын
asmon does that too, but he only adds general nonsense and doesn't add anything to the video
@BFedie518
@BFedie518 5 ай бұрын
I really wish reaction videos where the reactor added anything of value weren't the minority.
Жыл бұрын
I think there's a fundamental misunderstanding of OOP at play. I write OOP, but I also start with one file, and split things out as they get unwieldy. Speculative programming is a waste of time, regardless of paradigm, but for some reason it's very common, especially for Java developers. I never write abstractions before I need them, I just make a basic implementation, and when I realize an abstraction would make sense, I refactors.
@MadocComadrin
@MadocComadrin Жыл бұрын
Having a fundamental misunderstanding of OOP is Brian Wills modus operandi.
@0xCAFEF00D
@0xCAFEF00D Жыл бұрын
@@MadocComadrin He's got the correct picture. OOP is well defined. It's just that "OOP" programmers are really multiparadigm programmers who don't follow OOP well at all. Most of the objections you're sure to have is that he's not going into imperative code to resolve these issues he mentions. You don't get to claim ground for OOP without adhering to it. You also gain no benefits from OOP if you don't especially for properties like encapsulation and separation of concerns. If your "OOP" is just data with member functions that could just be free functions you're not doing OOP at all. It's a common mistake that the boundary of imperative to object oriented is when you have member functions. But that alone is purely imperative.
@yonderalt2662
@yonderalt2662 Жыл бұрын
The issue is, refactoring is a pain regardless of the paradigm. If you end up writing an entire class, you most likely will end up splitting it into different subclasses with an abstract class as a base, which is not... easy to do. I find it better to write abstractions when you understand the problem and know what to write by looking ahead (figuratively). For example: A base class ASerializer, and subclasses that inherit from that. Writing ASerializer first just "makes sense" because you ALREADY know you are going to write subclasses implementing this base class in the first place ie. "looking ahead". But imagine you did not "look ahead" first and wrote ASerializer logic on tons of different classes... now you realize you need ASerializer... good luck refactoring all that :)
@tapwater424
@tapwater424 Жыл бұрын
​@@MadocComadrin Every time someone criticizes OOP there is someone who will claim that "this is not what OOP is" or "this is not real OOP". Before OOP we had decades of design principles developed for procedural code, so what's the differentiating factor of OOP if not for the things described by Brian?
@robfielding8566
@robfielding8566 Жыл бұрын
Exactly. Most of what Brian Will is against is speculative structure. OOP prescribes a lot of speculative structure. It's like having a startup with an open floor plan; and walls are only put up as necessary. This is different from having a bunch of barriers erected early on in the design; and having to punch through all the barriers as you figure out what you want. An Osterhout video about great programmers talks about shallow vs deep interfaces really gets at the heart of it. You want the smallest possible interface surface area (what the caller needs to know), that hides as much useful functionality inside as it can. You want DEEP interfaces into modules. And when you have these deep interfaces, it's ok for things to lack speculative structure internally.
@ikarosouza
@ikarosouza Жыл бұрын
About the architect bit. My greatest work experience yet was when I started a new project in the company I was working. When it started, the lead architect of the project had already planned out all of the major "modules" of the backend we were going to build. One month in, I already was needing to change parts of it because it simply did not work. In the end I basically only kept the module names, around 50% of what was planned had to be changed or entirely "re-architected". 👌
@captainnoyaux
@captainnoyaux Жыл бұрын
yup, you can't plan everything, you do little bit by little bit and refactor a lot
@Microphunktv-jb3kj
@Microphunktv-jb3kj Жыл бұрын
Disadvantages of Object-Oriented Programming 1.Requires more effort: It requires some amount of work to implement parallelizable programs. 2.Not straightforward to reason with: Bad design can lead to an unnecessary amount of indirections that result in unreadable esoteric code. 3.Larger Programs: Often results in larger programs than procedural code.
@mvdrider
@mvdrider Жыл бұрын
​@@Microphunktv-jb3kj Object-Oriented Programming just some thoughts... 1.Does not require more effort that is a myth 2. It is straightforward to reason unless you're still a n00b. 3. If it results in larger programs then you're using it for the wrong problem, so think wise!
@chudchadanstud
@chudchadanstud Жыл бұрын
Yup this is normal, even for small projects. This is why the concept of abstraction exists.
@chudchadanstud
@chudchadanstud Жыл бұрын
@@mvdrider ...These aren't exactly specific to OOP lol.
@vitiok78
@vitiok78 Жыл бұрын
OOP is like: "Abstract spherical horse in a vacuum"
@IrizarryBrandon
@IrizarryBrandon Жыл бұрын
😂😂
@jamesriordan5461
@jamesriordan5461 7 ай бұрын
Don’t conflate OOP with inheritance. Composition works in OOP as well.
@vitiok78
@vitiok78 7 ай бұрын
@@jamesriordan5461 Does it make OOP less abstract?
@justgame5508
@justgame5508 Жыл бұрын
C# is really enjoyable to use and read when used properly, probably IMO one of the best syntax’s out there and it’s OOP, although you don’t have to use OOP if you don’t want
@jongeduard
@jongeduard Жыл бұрын
Hi, I develop in C# and DotNet since the beginning of it about 20 years ago, and I think it's still a very amazing, well-designed language, that has always evolved fast and extensively. But even with C# ideas changed a lot at Microsoft and they also had to admit that a lot of things could be done in a lot better and simpler ways, so they also went down the route of simplyfying things a lot when it comes to small applications. Just think about top level code, global usings, file scoped namespaces, and also the minimal web-APIs in AspNetCore. In the end, I see a lot of the same patterns of modern evolutions occur in many programming languages, at least in the ones that are popular. But what I also see, when it comes to older languages with really fundamental design problems like JavaScript, and in that way also TypeScript (because it's in fact just a thin wrapper around JS), those are hard to fix, and that also explains that issue in this video with the interfaces of TS metioned in the video here. I am a bit out of hope for that.
@jongeduard
@jongeduard Жыл бұрын
@@kidmosey Well, how exactly does the C# language really discourage you from doing that? I mean that's how I am interpret what you have written now. I think that you intended to say that certain guidelines you have been learning around C# programming do that, or that the DotNet libraries you are working with do this. But the language does not restrict you from doing that. If you take some older frameworks, like Windows Forms, or WPF, you are still getting deep inheritance trees. What I expressed in my previous reply is that C# gives you better options, but not that it holds you back from going the old ways.
@justgame5508
@justgame5508 Жыл бұрын
Nothing in the language restricts this at all I have no idea what he’s talking about
@HrHaakon
@HrHaakon Жыл бұрын
@@kidmosey so its like how Java does it?
@cerulity32k
@cerulity32k Жыл бұрын
I really like its rich syntax. Custom indexers & properties are great. Not to mention the reflection. If you want to make a moddable game, you would use reflection to load and inject DLLs. If you're forcing a game to be moddable, it becomes even more useful.
@zilog1
@zilog1 Жыл бұрын
Brian Will is the one who taught me C properly. not just "put this here here and here and now it says hello world congrats"
@Speykious
@Speykious Жыл бұрын
Splitting modules by concept is what I think he means by "for organization". He was answering the question "when do we start splitting modules" and not "how do we split modules".
@sk-sm9sh
@sk-sm9sh Жыл бұрын
Thing is "splitting by concept" is the most difficult part of programming. Meanwhile splitting code into "functions and state" is kinda easy thing to do but doesn't necessarily deliver meaningful value - by removing state away you are not necessary improving design/responsabilities of the function. But good code is all about good responsabilities, effective categorization and good abstractions. Sometimes abstraction can be improved by removing state from object and sometimes abstraction can be improved by making object stateful.
@jason_v12345
@jason_v12345 Жыл бұрын
Module splitting by "concept"? What does that even mean? An entire "app" is a "concept." This suggestion doesn't get us anywhere closer to an answer about when to split things up. The reality is that there are many reasons to split code up, but if we MUST boil it down to a single rule, it's that we split it up in whatever way improves maintainability.
@gracefool
@gracefool Жыл бұрын
No, he means human organisation, i.e. Conway's Law. It's inevitable: kzbin.info/www/bejne/a3q4m2R7j9yjgLs
@InkFPS
@InkFPS Жыл бұрын
Brian Will's videos are great. As someone whose used Go/Java/C#/Angular, I think C# does OOP right and avoids many of the problems often brought up against OOP. C# also mixes procedural, FP, and OOP together in a compelling package, that most often is just nice to work in. Ofc, there are standout issues like how null is handled, but overall its pretty good and does what I need it to. Yet, Rust is another beast all together and makes you question why there ever was a OOP vs FP contention, when it could have just been "the rust way" all along.
@klirmio21
@klirmio21 Жыл бұрын
Why did you put JavaScript framework alongside programming languages
@ci6516
@ci6516 Жыл бұрын
Bc most here are ppl who only know JS
@Asdasxel
@Asdasxel 8 күн бұрын
Isn't (modern) Java basically the same as C# in terms of OOP and mixing procedural, FP and OOP?
@Nellak2011
@Nellak2011 Жыл бұрын
My programming philosophy is: Separate Code and Data. Separate Representation and Schema. Represent Data using Generic Data Structures, so that it can be easily operated on. Prefer immutable data and persistent data structures. Be Functional for Stateless Logic, and Use Objects sparingly and with a purpose. Focus on Readability, Performance comes later. I used to hate OOP, but I have learned that certain parts of it are indeed useful, others (inheritance) are not so much. My biggest concern with Regular OOP is that it mutates state in a random manner and it hides information, making data manipulation cumbersome and inefficient. If you can make state immutable and whenever you MUST mutate state, you localize it so you can keep testability, then your code quality will sky-rocket. If you store data in generic data structures rather than objects, then you have more freedom to manipulate the data and can treat it as a first-class citizen. These are just my thoughts on the matter.
@davidshipman5964
@davidshipman5964 Жыл бұрын
This was insightful. Thank you for the comment :)
@CigEconomy
@CigEconomy Жыл бұрын
I find inheritance useful, I think the problem is that I entered an industry that has OOP fatigue from decades of misuse. So I can understand why more seasoned devs hate it since it was used very frequently in unnecessary ways in the past.
@semyaza555
@semyaza555 Жыл бұрын
Can you explain "Separate Representation and Schema." a bit more? That went over my head.
@Nellak2011
@Nellak2011 4 ай бұрын
@wurmfabrik Yea, that's the point. Keep it simple stupid.
@DonMarges
@DonMarges Жыл бұрын
These videos are awesome! I'm so glad there's a voice of reason in the KZbin Dev world
@otaxhu
@otaxhu Жыл бұрын
the only thing i hate about oop is the inheritance, when it comes to do unit test is so painful to do it. So the alternative to inheritance is the composition that i like btw.
@Hector-bj3ls
@Hector-bj3ls Жыл бұрын
Codebase structure actually does mirror the team structure of the organisation. Splitting modules based on teams may sounds weird, but it ends up happening even if you don't explicitly do it.
@andrewthompson9714
@andrewthompson9714 Жыл бұрын
conways law always seems to apply !
@picleus
@picleus Жыл бұрын
The obvious example is microservices, so long as you don't make a distributed monolith by mistake.
@edwinmartens7459
@edwinmartens7459 Жыл бұрын
That's where good OOP goes down the drain... Codebase should reflect the problem you are trying to solve or the world your problem resides in
@bobDotJS
@bobDotJS Жыл бұрын
Brian Will's OOP videos are my favorite. I rewatch them regularly
@Mark-np5ss
@Mark-np5ss Жыл бұрын
Same. The guy really seems to know what he's talking about.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
i really liked it, i was confused a bit by some of the terminology he was using though :)
@UnixBro
@UnixBro Жыл бұрын
What are these videos?
@panstromek
@panstromek Жыл бұрын
@@ThePrimeTimeagen definitely watch the OG "Object-Oriented Programming is Bad" one, that's the legend
@bobDotJS
@bobDotJS Жыл бұрын
@@panstromek Or OOP is Embarrassing, the sequel
@TheKillerJin
@TheKillerJin Жыл бұрын
Julia is designed with separation of modules and data types and its very good. It uses multiple dispatch to get the functionality of class methods, but without conflating modules and data types. it just feels good.
@oserodal2702
@oserodal2702 11 ай бұрын
Julia is a good language. Wish it can replace Go, but it's ecosystem is so far removed from the greater software engineering ecosystem that I don't know where the language goes...
@randomthings1553
@randomthings1553 Жыл бұрын
The simple answer is Rich Hickey answer, OO is bad because it ties state + behaviour + time in a single construct. Those are 3 separated concepts and should be treated separately. In my experience, OO leads to much more boiler place than FP. FP has its caveats if the language it's attempting some kind of purity. But most of the time it's just data (map, sets, list, vectors) and functions that produce new values, abstractions like objects get in the way, because you need to create more things (functions, classes, wrapper) to simple work with an existing object. While if you have your data separated from the behaviour you can reuse both the data and the behaviour. You can still make stuff that sucks, but at least has to return some datatype that you can work with however you want, instead of an object, that has it's methods saying how it likes to handled.
@skilz8098
@skilz8098 Жыл бұрын
That may be true, but in a multi paradigm language like C++ the idea of objects or OOP there isn't so much the abstraction that "everything has to be an object", but more on lines with the robustness of the language that allows the programmer to create an object that becomes or acts like a new data type where the compiler will treat them like a built in type. You can create a class or a struct with members - fields that could either have public or private access and yet when another uses that object as a type, you can use it with existing operators such as any of the arithmetic, comparison, or even bitshift operators like streaming the contents of a class into a stringstream object that can later be piped to either the console, to a file, or some other output device. Not all OOP is bad, but not all of it is good either. Some languages where "everything has to be a class object" is a different story. Sometimes having just basic primitives that can be acted on is just good enough.
@JChen7
@JChen7 Жыл бұрын
Reference to Rich = upvote
@mkwpaul
@mkwpaul Жыл бұрын
@@skilz8098 Your making the classic mistake of confusing OO with defining new datatypes by composing other datatypes. "Not OO" doesn't mean you exclusively work with primitives. In fact, in "Not OO" you tend to define alot more datatypes than in OO the OO world. C has structs, Fortran has structs too. Most functional languages don't just have structs / records, but extremely rich type systems that allow for much more expressive data modeling than OO languages. What separates OO from other types of programming are class hiearchies via inheritance, data encapsulation and coupling datatypes with behaviour.
@GEISTIFT
@GEISTIFT Жыл бұрын
@@skilz8098 but
@toms7114
@toms7114 22 күн бұрын
You have apparently only worked in an environment where OO was done wrong. Read Design Patterns, the Model-View-Controller pattern for UI work separates all 3 of state, behavior, and time up into 3 different objects that are intermingled. The strategy pattern implicitly states that the object that holds the strategy object contains the state and the strategy object determines behavior. When your code has well designed OO principles put in as part of the coding standards, and he people adding to the code understand those patterns, and when to and not to use them, OO is far better than functional or procedural programming for anything with more than 5,000 lines of code. To do this requires regular code reviews, not for effectiveness of the code, but to make sure it follows the coding standards. Once you step out of a pure OO approach in the code base, the code base becomes a monster to maintain, but while you are writing pure OO it is far better than any other style of programming. To get the skills to program pure OO takes a couple of years to develop after college with pair programming with a senior developer, and no company is going to want to pay for that with the turnover in industry these days.
@elnico5623
@elnico5623 Жыл бұрын
OOP hater is a gross oversimplification of Brian Will's talks
@FastFSharp
@FastFSharp Жыл бұрын
"Functional Code is just Procedural Code with functions..." As an F# dev, this is 100% how I write my code.
@avatar098
@avatar098 Жыл бұрын
*High fives in Scala*
@isodoubIet
@isodoubIet Жыл бұрын
I would amend that to "functional code is just procedural code with functions and clunky category theory abstractions".
@eriklundstedt9469
@eriklundstedt9469 Жыл бұрын
I'm pretty much a lua developer (technically, what I write is a modern dialect of lisp called fennel, it's fairly similar to clojure but with lua rather than java) In lua, you don't actually have OOP, but you can replicate many of the same features and functionality As someone who started out learning java, it's a bit of an experience, but it's really nice and quite enjoyable
@rex_melynas
@rex_melynas Жыл бұрын
Tables are basically prototype programming like Javascript, don't lie to yourself, working in lua ends up you making oop without having oop... Which is fine thou, la is hated by so many people, but it's pretty decent. It's just evolving slower compared to other languages, but if r compare lua 5 and ES5 (released around the same time) lua is way better. Now the problem with lua is how it's stuck I'n that past (well lua evolved, but not much) while ES started to do giant jumps between versions. And I'm the case of lua, a lot of people will forever be stuck in lua 5.1 because of luaGIT. Which causes more fragmentation between lua users, luarocks and it kinda handicaps the future of lua.
@nyankers
@nyankers Жыл бұрын
@@rex_melynas Practically speaking, LuaJIT isn't stuck at Lua 5.1 but instead branched off from Lua 5.1. The real hit to it in terms of usability is the author rejecting the concept of releases, which is basically just LuaJIT grabbing one of JS's problems (feature uncertainty) for no reason at all. Rolling releases are fine when it's just technical details changing, but there're some pretty big changes all under the same version name...
@RutschnajaTeleschka
@RutschnajaTeleschka Жыл бұрын
You mentioned it on some points. But it feels like there is a miss on simple concepts like DRY, KISS, YAGNI and especially SOLID which makes any programming style easier to execute. I saw terrible OO code but refactoring the whole project taught me alot. The result was a clean, well structured Java project with akka, sql etc. Less coupled layers between database ORM, the services, actors and the endpoints. And one of the most awful things I saw there was a huge monstrosity of inheritance and tests. Tests inheriting from other tests. omg. I purged it completely and made proper unit and/or integration tests for the same use cases. It's always about the real problem that requires a proper solution. pragmatism is key. OOP or not, people can f*up anything if they do not know how to use tools. It is not the tools fault. At least not always.
@atalhlla
@atalhlla Жыл бұрын
It sounded to me like “OOP conflates data types and modules” is talking about Java’s only module type being a Class, and the awkward class-with-private-do-nothing-constructor-and-static-methods thing you have to do for free functions. That could also just be the constant pain I feel from working with Java in my day job, and only Java 8 at that.
@bobbycrosby9765
@bobbycrosby9765 Жыл бұрын
Um, packages would like a word with you! There's even package private methods, which mean classes in the same package can call the method, but classes outside of the package can't.
@atalhlla
@atalhlla Жыл бұрын
@@bobbycrosby9765 those are useful in their own way, but not so much for general utility and helper functions.
@mv2e19
@mv2e19 Жыл бұрын
The inability to create a standalone functions or variables in Java drives me insane. Thank god for Kotlin
@ChaoticTrack
@ChaoticTrack Жыл бұрын
@@bobbycrosby9765 What does package-private have to do with not being able to define functions without first finding/coming up with some class to put them in? In C++ for example, you can start a file by just declaring and defining some functions, without needing to think about namespaces, classes, or types. Then, when it makes sense, you can define some type(s) with `struct`, wrap it all up in one or more `namespace`s (which may be considered a "[sub]module" or "[sub]context"), and converting `struct`s to `class`es as they grow if you want to split out interfaces or bundle data/state and functions as objects. In Java (as far as I know), you're forced to do all of that from the very start rather than introducing/letting use of those tools emerge when it makes sense to do so; hence "the awkward class-with-private-do-nothing-constructor-and-static-methods thing you have to do for free functions". If you're writing small, single-threaded command line programs, it might seem like a small difference, but my brain personally works a lot better when I can gradually ramp up to classes, and having that control makes a huge difference when concurrency comes into the mix.
@bobbycrosby9765
@bobbycrosby9765 Жыл бұрын
@@ChaoticTrack They said classes were their only modules. That is flatly false, you can look at packages as modules, and you have things like package private to facilitate keeping stuff private to your module (the package) so no code outside the module (aka other packages) can see it.
@ak899
@ak899 Жыл бұрын
Architects are perfect for big rusty corporations who like to set 10 meetings to triage the epics to handle a change request for a json field that needs to be passed down 3 microservices with an ETA of 4 sprints
@crides0
@crides0 Жыл бұрын
Everytime someone talks about OO I would like them to clarify upfront: which style of OO? cuz the value passing message-passing style of Smalltalk and Erlang are pretty functional and nice
@badbunnyfreaky
@badbunnyfreaky Жыл бұрын
I was searching for this comment, In my company we use Smalltalk for everything and not even the decision behind the language are very nice but also the common IDE that the smalltalk dialects have are so good. It's very easy to navigate between messages and classes, the only disadvantage is the version control system, Pharo has the possibility of using Git, but the common is to use ENVY.
@banatibor83
@banatibor83 Жыл бұрын
You need an OO language to properly translate a domain driven model into code. I have been a developer for more than 10 years by now, and when you can get rid of your perceptions you start seeing different programing paradigms, technologies, frameworks, languages as tools. Choose the right tool for the task.
@gamerzero6085
@gamerzero6085 11 ай бұрын
So functional DDD is a joke to you?
@LoneIgadzra
@LoneIgadzra Жыл бұрын
Really depends what you mean by OO. For re-usable data structures mixed into procedural code, OO is great. No issues. For de-coupling complex systems a la Spring, it's quite a major different idea of OO.
@origanami
@origanami Жыл бұрын
This. I use classes for low level data structures and APIs, but anything to do with logic, orchestration, high level abstraction is all composable functions.
@damionmurray8244
@damionmurray8244 Жыл бұрын
22:10 Extending EventEmitter works well but I prefer using Signals (an event dispatch/registration model pioneered by Robert Penner - same guy who gave us easing equations in Flash/ActionScript back in the day). There is an NPM package called mini-signals that's a fairly good implementation of the Signals pattern. The Signals pattern embraces the old adage 'Favor Composition Over Inheritance". Instead of extending EventEmitter, you create a dedicated Signals object that has dispatch and addLIstener methods. Decoupling event dispatch and listener registration from its client allows multiple clients to independently leverage the same signal. Signals are pretty flexible and allow for all sorts of messaging patterns (message buses are amongst my favorite).
@bkucenski
@bkucenski Жыл бұрын
The more data you're working with the more OO matters. Overengineering your classes because "patterns" is just layers and layers of crap. I call anything that uses classes OO. Even if it is mostly just organizing data structures and not complex relationships between objects.
@jonnyso1
@jonnyso1 Жыл бұрын
The only time I found inheritance really usefull was when I actually wanted to override a class behaviour. I worked a lot with the Laravel framework and when I needed some internal class to work differently, from the framework or some external library, I could easily extend the class, override the methods I cared about and then tell the dependency injection to use my class over the default one, or even, when to use my class over the default one, pretty neat.
@jimiscott
@jimiscott Жыл бұрын
This is the perfect scenario for Inheritance - This is how we guide the users of our SDK/framework (both internal and external) - 'If you need to change behaviour of Class XYZ then you can override methods ABC, DEF.' Inheritance needs to be used judiciously, but in the right place it is an extremely powerful tool.
@schelney
@schelney Жыл бұрын
Used inheritance when creating a flat matrix class in typescript; had a Readonly version as the base and a regular, mutable version that inherits from Readonly but has a .set function. Cases like these are the only times i use inheritance, but they are very powerful.
@Pekz00r
@Pekz00r Жыл бұрын
Yes, this is one of the two good uses of inheritance. The other one is creating base classes for one kind of classes, for example models or controllers. Then you can make the classes much smaller and focus on the important logic.
@CigEconomy
@CigEconomy Жыл бұрын
Inheritance is fine, the problem is it is extremely easy to exploit and most devs are dumb and will exploit it unless properly taught how to use it or kept in check by their seniors.
@G0rilla2829
@G0rilla2829 Жыл бұрын
I've done so much OO since I started programming I really struggle to break away from it, most problems seem so easy to handle in OO for me. I would love to learn more functional programming and procedural but it's so frustrating to not be able to come up with the solution quickly and to relearn everything. I guess it just made me impatient
@hannessteffenhagen61
@hannessteffenhagen61 Жыл бұрын
OO is programming with objects that communicate via messages. Pretty much nobody actually does that in practice, people call anything OO as long as it has encapsulation and dynamic polymorphism, neither of which are unique to OO. Static polymorphism isn't really an OO concept at all, but is IMHO preferable to dynamic polymorphism when applicable; the only reason we don't use it more often is that most programming languages just straight up don't have a way to even express static polymorphism, or at least not in a way that isn't extremely cumbersome to use. And of course, most things don't need to be polymorphic at all.
@IronFire116
@IronFire116 Жыл бұрын
Exactly this.
@willtheoct
@willtheoct Жыл бұрын
math teacher called they want you to isolate your variables when writing functions or else you fail the test. 'polymorphism' is not a variable.
@kahnfatman
@kahnfatman Күн бұрын
In my early days of IT education, I often wondered regarding instance behaviors. Behavior is a generic term for actions available to instances of a class. But who executes those actions? Ah - threads! So threads own these behaviors! But no one wants millions of threads -- or at least that's what I thought.. Erlang's implementation of process does just that by not spawning OS threads. In OOP world, what boundary of "object" is one of the sources of confusion. Car, Cat, Dawg are often used as examples of Object. But during introductory sessions to OOP, no one mentions Driving a Car or Raising a Cat or Walking a Dawg are also modeled as objects! How crazy is that?
@hannessteffenhagen61
@hannessteffenhagen61 Күн бұрын
@@kahnfatman Well it's because intro courses into OOP are also often intro courses into programming in general. And often the way things are taught is with small self-contained examples; because if you didn't you'd spend much more time explaining your example than you do explaining the technique which you wanted to talk about. In Uni "depth" is added by having some 3-6 month long course projects, and later on integrating students into research projects and sending them on internships to get some outside-world experience, but of course the latter ones can't be neatly tied into a lesson because IRL problems aren't often neat enough to be packaged as a lesson. FWIW while different behaviours being implemented as 'objects' is definitely a common OOP technique, it's not really core to the concept of objects, it's just one way to manage complexity. It's a bit more natural in FP because for most people there's not such a big leap from 'functions' to behaviours because people tend to imagine functions as something relatively dynamic to begin with.
@nERVEcenter117
@nERVEcenter117 Жыл бұрын
I have had the wonderful opportunity to pick tools and replace a number of redundant systems with one good one. I picked Nim for C compatibility, native speed, and its ridiculous modeling power. Coming from the functional world, I love its defaults: Parameters are immutable unless `var`, and procs have their own context. This makes the functional/procedural style of building modules of related functions, passing data to each other to produce new outputs, or more often down a pyramid of calls that construct a more complete bundle of functionality, crystal clear. It's beautiful. I have one module that does C++/Java-style OO and it fits the purpose beautifully, but NOTHING outside that module is modeled that way. My only headaches in Nim have not been modeling problems (with enough thought it deftly guides you to the correct answer), they've all been dealing with decades-old anachronisms of the C toolchain, which Nim uses. I love the speed and compatibility though. Linking static binaries with musl-libc feels *very* good.
@Big_Red_Dork
@Big_Red_Dork Жыл бұрын
Appreciate the long form videos man. I'm just learning to code, for personal interest mainly but potentially to assist in a future career change. Your content is helping mold and shape as well as contextualize what I'm learning in the courses I'm taking online. Keep up the good work!
@MegaMech
@MegaMech Жыл бұрын
If you reviewed the Mario Kart 64 decomp source code when it gets completed I think you would find it's lack of good programming hilarious. No real memory management (actual memory management funcs unused), manually written DMA calls everytime instead of a manager. Copypasta actor behaviour code. Inconsistent use of array + offset and array[offset]. Code in random places that do not belong. Overly long functions, fall-through switch cases, unused variables, etc.
@darioabbece3948
@darioabbece3948 Жыл бұрын
This Brian Will video resembles an exposition of the Clean Code Architecture. The data type are separated from the logic and the state management
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
interesting take
@skilz8098
@skilz8098 Жыл бұрын
If done correctly OOP has its uses and can be quite a powerful tool in the tool box, however it is not the answer to everything. I think it honestly depends on the task at hand and what is required of it. I'm not a "big promoter" of it nor am I "against" it. I think that to know what OOP is and how to properly implement it and to properly use it is more important than the debate for or against it.
@cegottardi
@cegottardi Жыл бұрын
Best comment ever.
@petrmotejlek1427
@petrmotejlek1427 6 ай бұрын
I've always had an issue with architects who don't do the things they architect. And this doesnt apply only to development. It's the same when we do IaC.
@afterglow5285
@afterglow5285 Жыл бұрын
People just need an enemy to justify their bad decisions, laziness and sometimes their jobs, right now is OOP, classes are now considered harmful and perfectly working code should be discarded and rewritten to be more pure. I prefer to mantain software made with OOP than the unholy mess that is haskell, untyped spagetti javascript and non performant python code.
@ea_naseer
@ea_naseer Жыл бұрын
Unfair generalisation. I don't like Haskell syntax, yes I agree it's bad but I like the concepts it comes with, programming in haskell just hit different to programming in Java or PHP. Think of it like music different people different tastes but unlike music programming paradigms feel more like religion. Also it's hard to write good functional code I've seen a lot of functional that's just procedural code.
@afterglow5285
@afterglow5285 Жыл бұрын
@@ea_naseer when you have a 10 years old codebase in java, or C++ that works, and suddenly a religious zealot wants to throw the code because OOP BAD i take offense and defend the old and ugly code over the more pure and ideal future, in you analogy, im more like an atheist, what works works, most languages now are multiparadigm anyway.
@PaulSebastianM
@PaulSebastianM Жыл бұрын
OOP is good, but with an A$$ The Rick. No honestly, it's good in some domains like line of business stuff, but only if you heavily use FP concepts also. OOP without FP to me is like the old OLD way to do OOP, with tight coupling everywhere, unexpected error states easily introduced when something is (so easily) not used as it was supposed to be used, super deep levels of abstractions that are most of the times not even needed, etc. But OOP has gotten better in recent times, especially with modern versions of their languages and accompanying frameworks and architectures... it has to.
@sk-sm9sh
@sk-sm9sh Жыл бұрын
OOP is kind of all about lose coupling - all early OOP languages had came with tools that allow achieving lose coupling pretty well. The "old OOP" style code that everyone hates in fact often is not OOP but procedural style code with extra syntax sugar of classes and inheritance - basically people who used to know how to write procedural code - learned about oop from idiotic books "head first OOP" or similar that the only thing it teaches is how to organize your pets - cats and dogs - under common base class 'animal'. Little who took time to read into more serious literature on OOP.
@carlsjr7975
@carlsjr7975 Жыл бұрын
OOP is designed for simulations. Look at the origin. Do you need a thousand slightly different airplanes?
@IrizarryBrandon
@IrizarryBrandon Жыл бұрын
​@@carlsjr7975 This. I tend to be anti-OOP, but I feel like OOP shines when you're dealing with actual _objects_ in the real-world sense.
@sk-sm9sh
@sk-sm9sh Жыл бұрын
@@carlsjr7975 not really. OOP emerged simultaneously in multitude of different environments.
@carlsjr7975
@carlsjr7975 Жыл бұрын
@@sk-sm9sh simula. Look it up.
@Barnardrab
@Barnardrab Жыл бұрын
I have never been able to find a use for interfaces in TypeScript. But I do use them in Java for common methods shared between different classes.
@KadekRegen
@KadekRegen 10 ай бұрын
It can be used to explain the colleagues or future you, what a variable contains instead of using any.
@vnshngpnt
@vnshngpnt Жыл бұрын
OOP is nonsense not based on anything except some vague ideas from 90s. Everyone means their own thing when talks about OOP.
@chucktangy
@chucktangy Жыл бұрын
I like having methods on objects. I don't like len( arr ). I do like arr.length. I like "I'm a string and I know how to do stuff".contains("stuff"), button.on('click', (evt) => doAction() ), list.find( (x) => x.hereIAm ). My IDE helps me remember the options I have when I'm given a specific type (dynamic languages mess this up, but it's ok). This is OO and it works really well, and it's powerful. If you decide EVERYTHING MUST BE PROCEDURAL!!!! You have to give up all of that, and I don't want to code in XLib or Windows C Lib style code ever ever ever again. Anyone who is convinced procedural is better doesn't remember the days before OO, and what a nightmare those were.
@aidanbrumsickle
@aidanbrumsickle Жыл бұрын
This is reminding me to read On the Criteria to be Used in Decomposing Systems into Modules, a 1972 paper by D.L. Parnas, in which he argues that one very effective criteria is localizing change. I think this is where you get things like the Open Closed Principle. OOP is optimized for being able to modify the behavior of a system with minimal changes to existing code, if you do it right. But most people write code that is constantly changed or refactored instead of adding classes that override existing behavior, so in those cases OOP provides little if any benefit.
@FlaminPigz7
@FlaminPigz7 Жыл бұрын
The good parts of inheritance can be had with Haskell type classes. It’s not a set-subset relationship. It’s more like “this is an instance of this principle, here is how”, with the “how” filling in any bridging functions not defined by the type class. So you can implement many different type classes, in a way more flexible than that allowed by the set-subset relationship of inheritance. Functional master race
@JoseCarlosVM
@JoseCarlosVM Жыл бұрын
The difference between procedural and functional programming is that functional programming has a big emphasis on pure functions as much as possible, which means you don't have any guarantees on the order in which things are evaluated, for example, in opposition to the imperative declarations you would see in a procedural software. So basically, programming with functions != functional programming
@pirateskeleton7828
@pirateskeleton7828 Жыл бұрын
On the game I'm making at home, the behavior class was divided into two files. The class itself is the state module, and the other file is strictly for organizing specific behaviors as extension functions of the individual behaviors, that can then be swapped in as delegates. While not identical to how he suggests, it does seem to be an implementation of separating the logic from the state. (Working in Unity, I can't help but be in object hell if I don't do it right.)
@pierreollivier1
@pierreollivier1 10 ай бұрын
But at this point wouldn't you be better off just writing procedural code, because what you are describing doesn't seem much different than what I write in C. I have a struct with data, and functions that operates ton that data both are separated.
@pirateskeleton7828
@pirateskeleton7828 10 ай бұрын
@@pierreollivier1 my reason for dividing them was mostly for organizational purposes. That being said, I have completely reworked my behavior class to work more like a finite state machine for ease of use, as of a few weeks ago.
@pierreollivier1
@pierreollivier1 10 ай бұрын
@@pirateskeleton7828 I love finite state machine, I use it a lot for prototyping actually, It makes the incremental process of discovery so easy because you don't need to build a lot of infrastructures for it to work, at first your FSM can work on one case, than as you extend it more enums and functions pointers you get closer and closer to the end goal. On top of that the debugging of FSM is amazingly trivial.
@DummyFace123
@DummyFace123 Жыл бұрын
Programmers have always been very dogmatic about ways of doing things. Its easy to see that our egos are waaaay tf out of control. The first time I heard his rant about "OO bad!" I picked up on his bias immediately. You can go watch his original video and pay attention to when he says things like "why do this, when you can just do this?". Thats just bias, a preferred way of doing things. Because ANYONE can just as easily assert the same thing in the opposite direction. And I guess having a youtube channel makes people feel self-important, to compound the average developer's out of control ego
@Shaft0
@Shaft0 Жыл бұрын
25:20 Dont (hadnt) watch vids like this... so hearing someone say what ive been struggling with in private, word for word, is a relief. 😌
@ShawnMcCool
@ShawnMcCool Жыл бұрын
Implicit implementation is bad because a function signature does not determine equivalent semantics.
@MrHaggyy
@MrHaggyy Жыл бұрын
I develop a lot of C++ code in and around AUTOSAR. First, we have a lot of hardware-specific registers. With inheritance, you can create a hierarchy of datatypes you can check against in tests or runtime. Also, we have a lot of virtual function classes. With the proper settings those force you to implement low-level functions for any "is-a" relationship, that will use a specific interface from application to hardware. It`s generally not the worst idea to separate a technical system from its physical models and describe each of them in a class.
@electrostatic1
@electrostatic1 11 ай бұрын
"Utils" is generally where ACTUALLY reusable code lives.
@shinobuoshino5066
@shinobuoshino5066 10 ай бұрын
Couldn't be more true, I literally never reused any other kind of code between two projects.
6 ай бұрын
At the end you answered someone's question about coding, seniority and architects. You've mentioned that your team was fully seniors and I have similar experience on that situation; everyone was able to take responsibility of the architecture together and everyone produced code for it. Separate architects and/or less-coding seniors might be more common on teams with significant portion of junior developers. In that scenario someone more experienced needs to take care of the big picture and also spend more time directing and helping the juniors.
@rickgerard4192
@rickgerard4192 Жыл бұрын
I'm sorry you had to deal with bad architects. I do know some architects that should of been moved to a management position. I understand the frustration. For reference good architects at our firm are : leaders bridging the product owner and SM/PM with the team; designers of solutions; ( Meaning we make the draft and evolve it with our team to something production worthy and keep track of changes to architecture. ) participate in the writing and validation of code. We also write the high level and detailed architectural documents as a reference for other teams and update them. Finally, architects almost never work alone. They hold architectural boards with other architects ( data, security, integration, infra, etc. ), explain findings and get them approved by other architects. Maybe you can have the software engineers do all that. But in my experience, lots of stuff get pushed to the side in favor of just implementing. That can lead to spaghetti code, architecture and technical debt.
@nomoredarts8918
@nomoredarts8918 Жыл бұрын
Nothing better than full FP stack. Elm on the frontend, Haskell on the backend. Tokioooooooo
@samuelwaller4924
@samuelwaller4924 9 ай бұрын
it sucks what happened to elm
@wadecodez
@wadecodez Жыл бұрын
I prefer PHP traits where CanQuack is a chunk of code that is essentially injected into the class scope, and interfaces like Quackable are contracts for polymorphism. When you combine traits and interfaces you can easily satisfy the contract without needing to create thousands of lines of boilerplate like Java. The catch though is traits in PHP are annoying to override because you have to essentially rename but still include the default behavior to make room for the new definition. Is this something that Rust solves?
@pompiuses
@pompiuses Жыл бұрын
"Like Java", what decade are you in? Java might've been verbose before Java8 ten years ago, not anymore. Newer versions of the language allows you write as compact code as any other language.
@wadecodez
@wadecodez Жыл бұрын
@@pompiuses 2014 hoping to get my team migrated to 1.8 pretty soon.
@TsvetanDimitrov1976
@TsvetanDimitrov1976 Жыл бұрын
Global state mutation is just unmaintainable in any non trivial codebase, so no, functional is not the same as procedural.(Tbh, I'm not against a "global" state in a module/dll if it offers a reasonable performace gain in a hot path, but that's just a possible optimization if it doesn't affect the whole program)
@muratguler800
@muratguler800 Жыл бұрын
If your Utils package has 900 classes, it is time to split that package up. Single Responsibility Principle shouldn't just apply to classes/modules. It should also apply to packages. And if you end up with too many packages, you should organize them into hierarchies of packages that make sense. It is Single Responsibility Principle all the way down.
@perguto
@perguto 2 ай бұрын
I'm such a proponent of OOP, I don't watch bare KZbin videos, but only ones that are boxed in reaction videos 3 times the size
@idwtgymn
@idwtgymn 2 ай бұрын
This is a classic academic vs practical conflic. A module is an abstract academic concept as the guy discusses it. It could be one function inside a larger file, it could be a folder with many files. All it means is some set of conceptually grouped together code. So like that example of the one function that doesn't fit the concept, that just means that one function is its own module.
@ddanielsandberg
@ddanielsandberg Жыл бұрын
Good OO is very close to FP in many aspects. Well constructed objects are nothing but a set of partially applied functions. Typical OO in the wild tend to be more class oriented programming than OO. And isn't a Monad a special kind of object implementing the monad interface?
@kahnfatman
@kahnfatman Күн бұрын
In Haskell, having a bind and a return is the minimal requirement for making a monad. Monads are composable, sequentialisable, traversable, foldable, applicable... to create more monads of similar structures. I understand your comparison of OOP to Monad regarding state persistence (stateful computation, continuation passing style). But that's the only area where the two concepts overlap: A State Monad.
@RedLoopster
@RedLoopster Жыл бұрын
31:18 "it's hard to take anything concrete out of it" - how I feel about every such video on coding concepts that don't include a single code example
@mfpears
@mfpears Жыл бұрын
14:45 utils is a code smell in real world applications too. Organize code by type. Even if it's just string. Not like it changes much, or you need to look at all number utils and string utils at the same time.
@ChaoticTrack
@ChaoticTrack Жыл бұрын
I prefer to organize by feature at the top level and by type beneath that. I've found the inverse hard to navigate, even when e.g., using a framework where every feature will have stuff like 'ui_components', 'controllers', 'models', etc. (In that case, I start with a flat structure within the feature context/module and only start to make folders for the types if it grows to ~8+ files or if I want to hide files that I don't really care about, esp. in Java where it's one class per file) Further, I _do_ actually _want_ to see all the string utils at the same time if I want to do some generic operation on e.g., strings in my 'accounts' context when the standard library doesn't provide it. I don't want to dig through every file in my codebase (or do that in my head) to see if I've already written that logic. If you're using Vim or an IDE, you can fold all the function definitions or open the Structure menu to only see the signatures.
@lengors7327
@lengors7327 4 ай бұрын
Why is it a code smell? And how do you fix it?
@mfpears
@mfpears 4 ай бұрын
@@lengors7327 google my article "Why your folder structure sucks". Utils isn't the worst but I still avoid it
@wdavid3116
@wdavid3116 Жыл бұрын
functional code isn't just procedural code with functions. You could potentially say it's procedural code with *only* functions or better yet procedural code with *only* *pure* functions but it isn't just procedural code with functions. It has a lot in common with procedural code but procedural code is using structure to manage code OO is about message passing and I would argue has become about controlling access to shared state and functional programming is about the complete abolishment of shared state.
@VivekYadav-ds8oz
@VivekYadav-ds8oz Жыл бұрын
23:02 Atleast in Rust, if the entire benefit you want is typing two words to get a benefit instead of typing a lot of words, a blanket implementation using #[derive(EventEmitter)] wouldn't be too bad.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
i am curious how this would work because you need to add properties to the struct (something to track the callbacks) and i assume you don't want them ackshually showing up in the LSP (unless you do)
@matias.fontanini
@matias.fontanini Жыл бұрын
@@ThePrimeTimeagen ez bro just use a singleton
@VivekYadav-ds8oz
@VivekYadav-ds8oz Жыл бұрын
@@ThePrimeTimeagen I can't say I'm knowledgeable about this, but can't this be done by just having a private EventEmitter data member (which obviously itself has public fields for manipulation inside impl blocks)? This way the LSP would know not to display its details and methods. But still, there are problems with this. 1) Actually modifying the struct. Derive macros don't allow changing the struct. For that, you require attribute macros. Syntactically they're similar, but feel "special"/"magic" to me for some reason. 2) This will change the repr of the struct and if something somewhere is relying on it, it will break. 3) Debug printing will get ugly, since now an object irrelevant to your main functioning is filling up your view space. This part actually bothers me a lot more.
@flippert0
@flippert0 11 ай бұрын
Oh, well: OOP. What are the three major goals of any larger SW project / codebase? Correctness, performance and testability. There are other aspects of course like reliability and maintainability. One of the major strategies for correctness is keeping errors "local", not spreading out into 100 files or modules. That's why we have modular programming: first functions, then compound types, then classes / interfaces with data hiding, then patterns like dependency injection with lose coupling of components. This helps also with maintainability and downwards compatibility, so that new code can work with old code. But OOP is only one paradigm of many in programming. When my 20+ years in the industry taught me one thing is, that OOP isn't per se good or bad, success in a project depends on many factors of which choice of programming language is only one of them.
@FalcoGer
@FalcoGer Жыл бұрын
OO is great. Just being able to separate implementation details from APIs easily is amazing enough. Having custom datatypes, great! Inheritance? Not quite so great, but it makes sense often enough. It's a tool to be used when required, not a mandate to use it. The same for the whole OO concept. You wanna have a game and represent a tank? Just make a tank object. You want your tank to have different weapons? Aggregate. I don't see a problem with that at all. I wanna see the the guy trying to use a functional language like haskell for that. That's just insane. Hiding your datamembers behind a well defined, public API just makes sense. I don't understand all those c people shoving everything into a global namespace and then having to come up with ridiculous function names like scanf, sscanf, sscanf_s and whatever other permutation of leading s, trailing _s and middle n there are.
@tapwater424
@tapwater424 Жыл бұрын
Neither implementation hiding or data types is a concept introduced by OOP. No one seems to agree what OOP is, but most definitions uses the "four pillars of OOP" as a base point. In the "four pillars of OOP", inheritance and polymorphism are the only really unique features of OOP. The remaining pillars, encapsulation and abstraction, are not unique to OOP what so ever. Even C can make implementation details private using the static keyword. Using your tank example, the obvious approach would be to use some sort of structured data, e.g. a struct in C. This has existed decades before OOP was invented. What OOP brings to the table would be to introduce a parent class GameObject and a subclass for each tank. Then using polymorphism to "abstract" parts of the codebase, only to struggle 1 year later when you want to implement that North Korean tank that doesn't neatly fit the existing abstractions of tanks. OOP proponents like you are essentially saying "OOP is good if you don't use the defining features of OOP"
@FalcoGer
@FalcoGer Жыл бұрын
@@tapwater424 sure, you can make your tank struct in c, but you can't put the fire method or the move method into it, and instead you come up with ridiculous names and insane parameter passing. Anyone can just do whatever to your tank objects and you have to do some debugging to find out why all your tanks suddenly have the same fuel value because the bug can literally be anywhere. How are you going to give your tanks sabot shells and heat shells at the same time into the same ammo rack? What if you want to add hesh shells later? With a complicated mess of logic, that's how. Nevermind all the other advantages of c++ over c like templates or the standard library. OOP gives you options. I don't care what OOP is or what you call it or what people agree on what it is, I care about what I can do with the language. And if I can allocate resources that deallocate themselves automatically with no or minimal overhead, then that's something that c can't do. Just because a shovel has a sharp edge doesn't mean that you go into the woods with it to chop trees. c++ is 99% compatible with c. I don't see why you wouldn't use it over c, even if you don't use classes, it just gives you more options. classes are just yet another tool to use if your problem calls for it. Also if that north korean tank doesn't fit the definition of a tank, then it's not a tank. And I know there are some whacky tank designs, but a tank generally is a mobile, armored box with a gun. You either introduce an intermediate class, like standard tank or your derive your north korean special tank from vehicle instead because it's not a tank. btw, north korea just uses old russian and chinese crap. the kind of junk russia is pulling out of it's storage right now. Stuff that is very much what you think a tank is. There are much more stranger designs.
@tapwater424
@tapwater424 Жыл бұрын
@@FalcoGer This is not a C++ vs C debate. I just used C as an example because it is a language invented before OOP became a thing. The fact that C++ has useful features is irrelevant. And your perception of C has no basis in reality. Tons of useful software has been written in C. It has been used for video games, operating systems, version control. Really any software you can imagine.
@Asto508
@Asto508 11 ай бұрын
@@tapwater424FalcoGer is completely right and your tank example was exactly one that explodes in your face later in development if written in a non-OOP language like C. The fact that there is software like this exists written in C, doesn't mean it's anywhere close to being as maintainable as similar software written in an OOP language like C++. If the Tank interface in your example doesn't satisfy what you need for the North Korean tank, guess what, you can and should refactor it since there is an obvious design flaw then. The point is that you can actually refactor it locally and in every class that implements the Tank interface with your IDE and Compiler giving you errors when you missed something instead of having to look around in 10k loc to check where your Tank struct was passed around as void* and dereferenced in places you didn't even know existed before touching this.
@matthewparker9276
@matthewparker9276 11 ай бұрын
​@@tapwater424I disagree that inheritance and polymorphism are the two core pillars of oop, encapsulation and polymorphism is. The fundamental concepts of oop is that by associating behaviour with data (i.e. encapsulation) doing the same thing to an object will produce different behaviour dependant on the data (i.e. polymorphism). You can have good OO using only interfaces and no inheritance.
@ClaudioBrogliato
@ClaudioBrogliato Жыл бұрын
I really don't get that part on pure functions writing in files. I consider pure functions those which have no side effects, writing files do have side effects. What got me was OOP "promotes small abstractions". I remember Pesce writing something like juniors understand better (and tend to build) simple structures with complex logic, seniors prefer complex structures with simple logic. Maybe the latter requires higher skills than the former but I wouldn't consider it wrong just because it's not something anyone can achieve. The former, in this pov, looks more like a white flag.
@mfpears
@mfpears Жыл бұрын
21:00 You should create an abstraction as soon as you have a perfect name for it. No sooner or later.
@chaorrottai
@chaorrottai Жыл бұрын
singleton -> static class inheritance is for stable libraries and as an easy way to have interfaces: instead of writing the parent class first, you write the parent class as an interface (pure virtual class) which takes like two seconds since you just forward declare virtual functions and common data members but don't define logic.
@jingle1161
@jingle1161 Жыл бұрын
OO might work if you can predict the future with 100% accuracy
@cleebe823
@cleebe823 Жыл бұрын
Engineers have at least a high level understanding of architecture in the same way that architects have a high level understanding of engineering - in the same way as physical building - the point of an architect should be to help glue together the developers ideas to solve a problem and be flexible, like a servant leader - not act like a dictator - especially in anything that isn't pure Waterfall - and by the time it matters in Waterfall the architect has left the building anyway.
@Krasshirsch
@Krasshirsch Жыл бұрын
The problem with a "utils" folder is the generic name as it doesn't convey the content. Could have been named "stuff". The promise explode function named, while being a utility function, does have a very specific function and should therefor be in a folder denoting its usage, such as "promises/interop".
@illicity2383
@illicity2383 Жыл бұрын
Not sure why this entire generation of coders hate OOP. I love OOP because it increases project organization, abstraction, and meaningful code. Things may be turning more to composables, but still OOP has its place. Dealing with very large projects I will always choose OOP.
@sb_dunk
@sb_dunk Жыл бұрын
Agreed. It's not always good, but it often is. The big problem with OOP is that so many people are dogmatic about it and think it's always the right approach.
@BeatsByYari
@BeatsByYari Жыл бұрын
I like to mix the two together with classes, properties, interfaces and objects from OOP and the methods itself written in a more functional style using C# linq/java streams. OOP makes organization super easy
@taragnor
@taragnor Жыл бұрын
Yeah OOP has a lot of good principles to it that will really help your code in general once you work on anything of meaningful size. Honestly the guys that hate OOP I really have to wonder if they do nothing but small programs. I can't imagine any kind of even moderate-sized application being done in all imperative style without having a code base that's a huge mess. It also works very well when you factor in any kind of IDE-like behavior in your editor, because you can take any object and see the auto-complete for the methods of that object. So whether you're dealing with a string, a vector or some custom object in any codebase you can always get an idea of what things that object can do by its methods. And to be honest, all sufficiently complex programming starts to look more OOP. Even C's standard library with fopen, fclose, fprintf, etc are all essentially primitive OOP just without the handy OOP notation and associations. You have this object that's holding a state, you largely keep the implementation details unimportant and just hand the user functions that do operations with that object and translate it into basic types without ever having them need to know what's going on behind the scenes. It's just a lot handier if you have a real File class, so you know instantly where to check it for methods. Not to mention all the other features like RAII you can then build into it to not have to worry quite as much about cleaning it up.
@illicity2383
@illicity2383 Жыл бұрын
@@taragnor Yup! Exactly. OOP isn't the end all be all, but in general OOP is important when it comes to implementing specific design patterns like MVC, dependency injection, etc. Especially useful when using external libraries/modules. Also makes documentation easier, and code reusability. There are just WAY too many benefits to it. Whats even funnier is that all these people who are against OOP don't even realize they are benefitting from its practice. Like all these newer generation React devs... Like you guys realize that components are still just objects right?
@notoriouslycuriouswombat
@notoriouslycuriouswombat Жыл бұрын
what do project organization and OOP have to do with eachother?
@DexieTheSheep
@DexieTheSheep Жыл бұрын
ay i keep seeing you on twitter n now YT recommended me one of your videos... well ofc you have a channel kek. great videos bro
@drxyd
@drxyd 7 ай бұрын
Casey Muratori has some arguments against private fields, namely that getters and setters should only be used if they perform some kind of processing on the underlying data and that public fields allow you to be more flexible with your testing down the line. I mostly agree but still use private fields as a way to add discipline to my implementation basically forcing myself to design a good interface rather than accessing things whenever and however I like which can eventually lead to spaghettification if I'm not careful.
@raph151515
@raph151515 Жыл бұрын
pure module goes well with functional or procedural, needs to contain pure functions only, I didn't realize yet but it's true that it can't import state modules without losing its purity, it can receive state arguments, keep them alive in a closure via what the functions return as a way to handle the state.
@zZGzHD
@zZGzHD Жыл бұрын
I mean coding in OO is fine, but it shouldn't be the only paradigm you know.
@anirudhmanojc.v3739
@anirudhmanojc.v3739 Жыл бұрын
hey hey. the only use of oop is that it can help visualising your code. but honestly we all only use it cause it sounds satisfying to say. oops
@MarkMark
@MarkMark Жыл бұрын
There is this really interesting talk by Evan Czaplicki, “The Life of a File” where he talks, among other things, how the acceptable size of your file is dependent on things like the language you are using. That’s be an interesting talk to watch here.
@5cover
@5cover Жыл бұрын
C# extension methods solved the "Utils" problem I usually have an "Extensions.cs" static class that does not need to be referenced explicitly.
@MrVeps1
@MrVeps1 Жыл бұрын
Whenever someone says OOP is bad, I usually just realize that their thesis statement is "Bad object oriented programming is Bad", unless we're talking about a functional programming purist with functions so pure and free of side effects that you can't ever really know whether their program ran or not.
@sudo4598
@sudo4598 Жыл бұрын
Funny, I could say the same for people who dislike procedural programming.
@botondhetyey159
@botondhetyey159 Жыл бұрын
When 95% of code written with your paradigm is bad, it's the paradigm's fault.
@NabsterHax
@NabsterHax Жыл бұрын
It's because OO educators always over-emphasize the use of objects, and do silly things like making a whole object for what could just be one simple function. They make it sound like solving problems is just a matter of abstracting enough, when in reality this can just make it harder to solve the damn problem because now you have a bunch of extra pieces. Objects are useful when code starts to become unwieldy, and you can't keep track of what's going on everywhere. Then it's helpful to take the time to put some code that you know works in a box and forget about how it works. Until that point, it's just slowing you down and potentially making it HARDER to design a decent solution.
@redundantpancake
@redundantpancake Жыл бұрын
The poll results are not that weird. In most universities OO gets taught as the end-game content, so you leave it looking for an OO language job. And some people never leave that dark tunnel xD
@fiddle_n
@fiddle_n 11 ай бұрын
> “Utils is a code smell.” The problem is that that statement is a statement that exists outside of practical work. YES. Truer words have never been spoken.
@CottidaeSEA
@CottidaeSEA Жыл бұрын
I think OOP is great, amazing even. The problem is that people overengineer their solutions.
@willtheoct
@willtheoct Жыл бұрын
if you like oop so much then why dont you override the public private polymorphic abstract pure virtual immutable protected interface class instance container manager and marry it?
@ci6516
@ci6516 Жыл бұрын
Go wait and async bud
@CottidaeSEA
@CottidaeSEA Жыл бұрын
@@willtheoct Sounds more like you should marry decorator functions.
@CottidaeSEA
@CottidaeSEA Жыл бұрын
@@ci6516 So syntax sugar for creating and joining threads is now something praiseworthy?
@willtheoct
@willtheoct Жыл бұрын
@@CottidaeSEA pretty sure they're just called functions
@giganooz
@giganooz Жыл бұрын
I think some final properties could be on interfaces, like if something has an ID and it is stored in a hashmap with that ID, any implementor of such an interface shouldn't be able to change their own internal ID. Other than that I think you should be able to add getters on an interface kind of in the way Kotlin does, simply for convenience, but I do also agree with zig with the idea that getters hiding logic is kinda bad. If a language already does it though then I think it's fine.
@Ahmed-S-Lilah
@Ahmed-S-Lilah Жыл бұрын
finally you reacted to him but come on you left the most impressive video "Object-oriented Programming is bad"
@udadni
@udadni Жыл бұрын
Every time I see these OOP critiques, I'm reminded of Borachio's retort to Conrade: "Seest thou not, I say, what a deformed thief this fashion is? how giddily a’ turns about all the hot bloods between fourteen and five-and-thirty?"
@multiHappyHacker
@multiHappyHacker 8 ай бұрын
@25:13 no, it is actually obvious when an abstraction is useful because it reduces the code complexity or the amount of code written substantially. Try writing something equivalent to a custom C++ container without a class and then make a class. The difference is massive--there are useful abstractions and when things get too messy they become an obvious solution.
@zeocamo
@zeocamo Жыл бұрын
modules here is more like a folder, a group of code the fit together, so you don't get the user/role objects that need code from each other thing, but user and roles is in the same module but product/catgories may not be in the user/role module as they don't fit together.
@sealsharp
@sealsharp Жыл бұрын
If modules are singletons but as an instance of a class, aren't they just...globals in a namespace?
@MrSemIsAwesome
@MrSemIsAwesome Жыл бұрын
OOP is the most overhated thing ever. Here's the deal. It's very hip to hate OO. But you get shit done with it. It's easy. It's good. Java is the best. Fuck all the haters lmao
@willtheoct
@willtheoct Жыл бұрын
hello world back end in java: 43 lines hello world back end in javascript: 3 lines and as anyone who has ever looked at a 'java back end' knows, it only gets way, way worse.
@willtheoct
@willtheoct Жыл бұрын
@@gagaxueguzheng its 43. try it im typing millions of keys throughout my career, so an 1100% increase in the number of keystrokes is a bad start
@trapexit
@trapexit Жыл бұрын
Kinda surprised more of Brian's videos haven't been reacted to. This opener on this series was pretty good.
@kahnfatman
@kahnfatman Күн бұрын
History repeats itself. Allies become enemy. Friends turn out to be traitors. Enemies invest in same interests...
@Veptis
@Veptis Жыл бұрын
I updated some code today because a dependency got updated and that included some improvements I had contributed. And the project of mine had the same function 3 times. And as they were methods, I couldn't easily access them. So I simply put the function into the file outside of any class, and then wrote methods to just call that function individually. it did work out well for me.
@Asto508
@Asto508 11 ай бұрын
Terrible. I have colleagues like you :(
@PureClarityAbsolute
@PureClarityAbsolute Ай бұрын
this is so true, Singleton always is responsible for bad code, and slow code, they always exist in a way which will make you cry
@noop9770
@noop9770 Жыл бұрын
Rust traits are nominal types while go interfaces are structural types. Nominal types are identified by name. Structural types are identified by the inner structure eg the method signatures
@ChaoticTrack
@ChaoticTrack Жыл бұрын
If you want both, try Elixir. Modules and protocols are named but structural pattern matching is used everywhere.
@stickfigure31
@stickfigure31 Жыл бұрын
I think it's a matter of preference in programming style, shaped by your background in coding. If I understood Brain Will's arguments they seemed to be "structured" programming is good, but not "OOP" and specifically when "OOP" goes overboard with abstractions. OOP (epically that run away type) looks like a spaghetti mess of code to me, while OOP devs will tell me "unstructured" or even "structured" languages like C produce spaghetti code. I think this difference of opinion comes from how we view problems. For me I tend to have a zoomed in almost microscopic view on things I always have and I can't "zoom out", so to understand the whole of a big thing I "scan" through it at the scale my brain will accept and see how those parts interact with each other to try and understand what the whole is. Programming in "unstructured" languages from my thought process is like doing this until your monolithic code cause spade invaders to pop up on screen (not sure how else to put it), "structured" languages like C are technically one zoom level out, but I still like working with C. Because I can still understand it with my zoomed in view typically C functions don't get insanely abstracted like OOP so I actually understand pieces of C as if it's functions where their own "unstructured" programs, while I have tried learning OOP the layer of abstraction effectively means your high level code is running on top of a black box from stack over flow you don't understand. Again someone who likes developing in an OOP languages like Java or c# probably have a different level of zoom when they are looking at problems then me and have faith the black boxes will hold up, but that's out of my wheel house. I follow a java tutorial for a simple Hello World and suddenly we are importing 100s of objects/class (intentional exaggeration of the situation for effect) with no explanation to their existence or how they are involved "Hello World!" rendering to screen.
@haliszekeriyaozkok4851
@haliszekeriyaozkok4851 Жыл бұрын
When your project gets more and more large you literally can not prevent to get more complicated structure, even you do best practices, you can only make it a little easier. I think the best solution is creating liblary for yourself on your package manager and import them only the source folder of that.
@mfpears
@mfpears Жыл бұрын
16:00 Yeah, name it promise-utils or whatever. It's just that something so vague as "utils" is destined to grow to infinity.
Ditch Your Favorite Programming Paradigm | Prime Reacts
16:02
ThePrimeTime
Рет қаралды 131 М.
Players vs Pitch 🤯
00:26
LE FOOT EN VIDÉO
Рет қаралды 138 МЛН
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 2,7 МЛН
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 138 МЛН
Prime Reacts: The Flaws of Inheritance
29:05
ThePrimeTime
Рет қаралды 378 М.
Object-Oriented Programming is Bad
44:35
Brian Will
Рет қаралды 2,3 МЛН
A Jr Dev For Life?? | Prime Reacts
21:33
ThePrimeTime
Рет қаралды 321 М.
You dont know OOP
50:48
ThePrimeTime
Рет қаралды 365 М.
Object-Oriented Programming is Embarrassing: 4 Short Examples
28:03
Brian Will
Рет қаралды 2,1 МЛН
PHP Doesn't Suck Anymore? | Prime Reacts
25:42
ThePrimeTime
Рет қаралды 347 М.
Dependency Injection | Prime Reacts
28:34
ThePrimeTime
Рет қаралды 354 М.
"Clean" Code, Horrible Performance
22:41
Molly Rocket
Рет қаралды 911 М.
The Most Amazing Software Ever Created
20:02
ThePrimeTime
Рет қаралды 387 М.
Players vs Pitch 🤯
00:26
LE FOOT EN VIDÉO
Рет қаралды 138 МЛН