You dont know OOP

  Рет қаралды 265,083

ThePrimeTime

ThePrimeTime

3 ай бұрын

Recorded live on twitch, GET IN
/ theprimeagen
Become a backend engineer. Its my favorite site
boot.dev/?promo=PRIMEYT
This is also the best way to support me is to support yourself becoming a better backend engineer.
Article link: blog.sigma-star.io/2024/01/pe...
MY MAIN YT CHANNEL: Has well edited engineering videos
/ theprimeagen
Discord
/ discord
Have something for me to read or react to?: / theprimeagenreact
Kinesis Advantage 360: bit.ly/Prime-Kinesis
Hey I am sponsored by Turso, an edge database. I think they are pretty neet. Give them a try for free and if you want you can get a decent amount off (the free tier is the best (better than planetscale or any other))
turso.tech/deeznuts

Пікірлер: 879
@junfour
@junfour 3 ай бұрын
Real OOP has never been tried
@madolite
@madolite Ай бұрын
Yeah, just like capitalism, communism, science, and religion.
@NathanSmutz
@NathanSmutz Ай бұрын
Perhaps it has; but only in some remote closed commune, requiring unexpected levels of commitment... The legend of SmallTalk.
@NathanSmutz
@NathanSmutz Ай бұрын
Actually, I hear SmallTalk is awesome. It's typically used in its own special fully-modifiable programming environment.
@XX-ri1me
@XX-ri1me 11 күн бұрын
With an actor framework like proto actor you have actor objects that can send signals to each other. Feels like the original definition
@Colonel1954Dz
@Colonel1954Dz 3 ай бұрын
Prime talking about traits as if they're fundamentally different from inheritance. A first level trait is an interface (and possibly a base implementation class), combination of traits can be seen as multiple inheritence. Fundamentally, the choice of your 'abstractions' is what defines how well either options do. If you create a bird abstraction with the underlying assumption that all birds can fly, then your abstraction is wrong.
@airkami
@airkami Ай бұрын
You forgot to mention the kinds of birds that can’t fly: kiwi, penguin, ostrich, and dead
@antheus_s
@antheus_s 3 ай бұрын
The "L" response from ChatGPT caught be off guard 🤣
@firen777
@firen777 3 ай бұрын
16:21
@_mishi
@_mishi 3 ай бұрын
@@firen777 not all hero's have capes
@pinkzero281
@pinkzero281 2 ай бұрын
which means you're not one of the hero@@firen777
@user-gh9cs9xu8f
@user-gh9cs9xu8f 2 ай бұрын
"not all heroes have capes" does not mean "no heroes have capes" @@pinkzero281
@c.Orange
@c.Orange Ай бұрын
​@@pinkzero281quite literally everyone here is a hero exept you.
@someguyO2W
@someguyO2W 3 ай бұрын
As someone who's programmed in multiple paradigms, my favorite paradigm is whatever paradigm solves my problem for me. I have no qualms mixing functional with OOP. It all depends on what the problem is.
@thederpykrafter
@thederpykrafter 3 ай бұрын
I think most people get too caught up in one way being the right way, rather than being able to know when to use one or the other.
@someguyO2W
@someguyO2W 3 ай бұрын
​@@thederpykrafterikr. But where's the fun in that? Even with strict design patterns, knowing when to break the rules is critical. In clojure, there's side effects. Even though it's functional. Globals and Singletons are bad, but sometimes they are the best solution. Why? Because in the real world we deal with these problems. Purity is impossible. The science is knowing the correct thing to do. The art is knowing when to do the incorrect thing.
@TheLucanicLord
@TheLucanicLord 3 ай бұрын
I will create an object with no real world significance with a load of methods with no persistent state, while totally deriding functional programmers. I will also crate an object with all the data in it, which I will call either O or wOrLD and pass he bloody thing everywhere.
@someguyO2W
@someguyO2W 3 ай бұрын
@@TheLucanicLord that sounds painful 😂😂 I call it Context
@redpillsatori3020
@redpillsatori3020 3 ай бұрын
@@thederpykrafterYES! This! These are tools to help you complete different tasks. Don't be too wedded to one paradigm or another. Learn as much as you can about all of them, and use the correct "tool" for the job(s).
@hinduGigaChad951
@hinduGigaChad951 3 ай бұрын
Liskov Substitution principle: "If it looks like a duck, quacks like a duck, but needs batteries, you've got the wrong abstraction"
@davidlaraezm
@davidlaraezm 3 ай бұрын
what if we are talking about a duck toy?
@slipoch6635
@slipoch6635 3 ай бұрын
@@davidlaraezm duck toy != a duck ;)
@helgenlane
@helgenlane 3 ай бұрын
That's why you should figure out and organise your data structure before actually implementing it in code, huh
@ska042
@ska042 3 ай бұрын
​@@helgenlane I don't know if that was deliberate, but you just summarized why inheritance hierarchies always end up sucking ass in real projects. In most projects, nobody can predict what the appropriate OOP-correct data structure will be because it changes over the course of the project, and adjusting those inheritance hierarchies to fit after thousands of lines of code have been written using them can be awful. That's less of an issue with a model that relies more on composition and traits/interfaces, keeps things more flexible even when stuff changes.
@pavloburyanov5842
@pavloburyanov5842 3 ай бұрын
I finished your "The Last Algorithms Course You'll Want", and .. it was awesome. You motivation message is now deep in my heart. Thank you for doing this!
@voswouter87
@voswouter87 3 ай бұрын
The point of getters and setters is that the class can always take control of private data without changing the interface. You can trigger onchange listeners or reject the new value. But no, it almost never gets used.
@defeqel6537
@defeqel6537 3 ай бұрын
Not only does it almost never get used, the "taking control" almost always requires adaptation in the client code anyway, at least long term, or you will just slowly create spaghetti. (taking control almost always means increasing the amount of responsibilities the class has)
@RMDetho
@RMDetho 3 ай бұрын
I've used setters sparringly, but I do use getters a lot, especially for things that Prime showed.. If my class has lists, and I want to get the total from those lists I consider that those lists are properties themselves, length of those lists are in extension also properties of those properties, so a "public int TotalRecords {get { return list1.Count + list2.Count;}}" makes perfect sense. This is still a "method" with additional contextual information making it clear as day to anyone what this Property contains and that it's read only. There's literally no purpose for something like this be it's own function. I believe that functions/methods should contain some kind of operation on the data that isn't exclusively reading, while getters are perfect for those situations. Another use case is when writing object models for parsing json. Client maybe has cardinal directions as words ("up","down","left","right"), but for coding purposes it'd be more helpful to have this as an enum, so public Directions CardinalDirection {get { switch...case..."up": return Directions.Up;}}. With this approach my object importing is a lot simpler and I have immediate access to properties I need in the format I need them.
@kobi665
@kobi665 3 ай бұрын
i dont entirely agree with that. sometimes, and for simple things, getters and setters are an east interface to connect two components when one has a very simple value that is only used in order to update anohter component, and also needed for other states. not everywhere, but useful. for example, a Unit's HP
@justanothercomment416
@justanothercomment416 3 ай бұрын
This is why objects which are likely to require this type of control should use getters/setters but most should not. If your base class requires this type of control, use them. If it does not, don't. Then if needed, create special cases in the derived. Which will likely only be used in the special case derived, likely implying it should be private anyways. Which means the special case may well be hidden within the specialized derived implementation. Which brings us full circle that for the vast majority of cases, getter/setters should be avoided unless it's a requirement of the base. Contrary to one of the of gallery comments, composition does not avoid some of these complexity or issues in any way. It simply changes the surface area where it does. I'm honestly shocked so many people lack such a fundamental background on OOP yet are willing to rally against it.
@dhay3982
@dhay3982 3 ай бұрын
I really like getters in C#. In other languages, usually I find necessary to write methods like len() to access read-only fields which is a little annoying.
@AnthonydeCruz
@AnthonydeCruz 3 ай бұрын
Object Oriented Primeagen
@defeqel6537
@defeqel6537 3 ай бұрын
Just FYI Prime, Liskov's applies to Traits too, and any function pointer(ish thing) edit: as a practical example: a function calls another function via a pointer, and expects that function to return the same value with the same parameters with every call, but if some implementation returns a new value with each call it violates the principle and may lead to incorrect behavior
@rokker333
@rokker333 3 ай бұрын
Exactly! It is a design principle that is valid where ever functional variance can be implemented. It also applies to non-OO languages like c when they provide dynamical behavioral variance.
@etodemerzel2627
@etodemerzel2627 2 ай бұрын
Are you saying that the Liskov substitution principle is equivalent to pure functions?
@defeqel6537
@defeqel6537 2 ай бұрын
@@etodemerzel2627 No. Pure functions do qualify, but Liskov's does not prohibit side effects, only that those side effects adhere to the interface. The example was of idempotence (which does not require purity), but another example could be an implementation that terminates the application; unless the interface permits that, such an implementation could exhibit undefined behavior (e.g. files left behind, or perhaps the termination function itself has been overwritten in memory, so instead of termination, some other behavior is triggered [not likely in modern languages, but Liskov's applies to assembly too, where self modification isn't that uncommon historically]). The principle is about the expectations / specifications of the interface, and reaches further than just the type information we can declare in modern languages.
@fullspecwarrior
@fullspecwarrior 3 ай бұрын
Getters and setters are a useful debugging aid, that's all i.e. you can stick a breakpoint on a setter to see when it gets changed and by who.
@defeqel6537
@defeqel6537 3 ай бұрын
wouldn't a watcher do the same thing?
@kirkanos771
@kirkanos771 3 ай бұрын
Their real benefit shines when using reflection features. That's the main reason of their existence instead of a mere method. They have no reason to exist in languages devoided of reflection capabilities.
@fullspecwarrior
@fullspecwarrior 3 ай бұрын
@@defeqel6537 It would
@jacksonlevine9236
@jacksonlevine9236 3 ай бұрын
@@kirkanos771 I call them vampire languages
@kirkanos771
@kirkanos771 3 ай бұрын
@@jacksonlevine9236 ironically, they are less vampiric when not having those features. As the main purpose of those libraries is to vampirize the code at runtime.
@uima_
@uima_ 3 ай бұрын
I'm not finished the video yet, but I felt the inheritance in oop is like directory and the trait in rust is like tag in note taking management. And I love use tag more then directory.
@MagpieMcGraw
@MagpieMcGraw 3 ай бұрын
Liskov substitution means that when a function wants a "bird" as an argument, you should be able to pass a "sparrow" or a "chicken" and have the program stay correct. In other words, all subclasses must contain all data from their superclass.
@user-cy1rm5vb7i
@user-cy1rm5vb7i 3 ай бұрын
it does not say anything about data. It only states, that a base thing defines an assumption and that every child thing of that base thing must follow that assumption. Collections are a great example. Every collection is iterable, but pretty much all of them have different internal implementations. But, again, they all hold an assumption: a collection is a thing, that represents sets of things, might be empty, and you can access thins in the set one by one. It might be a continuous block of memory, a linked list of block of memory, a hash map, a file, a network socket, even a generative corotine, that spits stuff when asked.
@steveoc64
@steveoc64 3 ай бұрын
Liskov was high on drugs There is no such thing as a bird. There are things with feathers, things that can fly, and things that tweet Traits/interfaces trump strict object definitions And duck typing with compile time checks trumps traits Java < Go < Rust < Zig
@user-qm4ev6jb7d
@user-qm4ev6jb7d 3 ай бұрын
​@@steveoc64I disagree with that last part. Explicitly mentioned interfaces are better. Then again, I'm also against the "typeclass" mechanism, where the compiler finds the right implementation. Even *that* is too implicit for me.
@DWM864
@DWM864 3 ай бұрын
"In other words, all subclasses must contain all data from their superclass." can you explain why??
@astronemir
@astronemir 3 ай бұрын
@@steveoc64duck typing with compile time checks: Python 🐍 with pre-commit strict type checking. 😂😂😂
@AlexanderBorshak
@AlexanderBorshak 3 ай бұрын
There is a great definition of the OOP in the MIT 6.001 SiCP: "One powerful design strategy, which is particularly appropriate to the construction of programs for modeling physical systems, is to base the structure of our programs on the structure of the system being modeled. For each object in the system, we construct a corresponding computational object. For each system action, we define a symbolic operation in our computational model. Our hope in using this strategy is that extending the model to accommodate new objects or new actions will require no strategic changes to the program, only the addition of the new symbolic analogs of those objects or actions. If we have been successful in our system organization, then to add a new feature or debug an old one we will have to work on only a localized part of the system." (Part 3, Modularity, Objects, and State) Without any classes, SOLID, GoF, GRASP, inheritance, and other stuff.
@duncanw9901
@duncanw9901 3 ай бұрын
"Mutable objects with message passing." Thank you for coming to my SmallTalk. (FP bro take btw)
@daven9536
@daven9536 3 ай бұрын
The main keyword here being "hope"
@user-gq2bv6dm9s
@user-gq2bv6dm9s 3 ай бұрын
If the system you are modeling contains hierarchical relationships (most do), then you are not being faithful to this definition by avoiding inheritance for the sake of avoiding inheritance.
@AlexanderBorshak
@AlexanderBorshak 3 ай бұрын
@@user-gq2bv6dm9s Actually, nothing prevents you from building different objects with their own methods and fields, without inheritance. Taxonomy does not exist in the real world, and eagle, tit, and thrush are not inherited from birds, but unique things that have their own feathering, beak, and wings and they fly and feed in their own way. This is if we are extra-meticulous to the words in the definition. If not - we can rely on common sense and abstract out some stuff (aka methods) so far this does not interfere with us building the system.
@AlexanderBorshak
@AlexanderBorshak 3 ай бұрын
@@user-gq2bv6dm9s But in general, I cited this definition (from the MIT 6.001 SiCP) as an example of a fairly complete, but at the same time absolutely understandable definition of OOP, which is not overloaded with unnecessary details and restrictions. Like those that “if there are no classes, then it’s not OOP”, or “if there’s no encapsulation, then it’s not OOP” and the like. The OOP can be implemented in pure C, and it will quite be "Object Oriented" Programming, it simply will not fall under some definitions that are widely used as dogmas or axioms - although for some reason no one ever says when and why they became dogmas and axioms.
@francis_the_cat9549
@francis_the_cat9549 3 ай бұрын
I think you might be interested in Odins solution to this. While it generally behaves a lot like C, there is support for subtyping and generics. As a bonus there is even an (experimental) feature on the lsp called "fake methods" to make it easier to find the procedures that are associated with a struct.
@user-gq2bv6dm9s
@user-gq2bv6dm9s 3 ай бұрын
If you need ChatGPT to explain what Liskov Substitution is then I think you fall into the category of people you mentioned earlier in the video who have not used a paradigm seriously enough to justify having strong beliefs about it. This is a core principle of OOP. Liskov Substitution in practice is simply when you annotate the type of a parameter to be a base class, intending to pass in a subclass instance for the argument, like in the fashion of dependency injection. it is programming to an interface, not a particular implementation.
@defeqel6537
@defeqel6537 3 ай бұрын
LSP is about more than just the interface, it's about behavior too. e.g. a subclass suddenly calling exit(-1), throwing an exception, etc. It's also about parts of the interface that we usually don't have explicit types for, e.g. if the interface specifies that a function returns integer values between 1 and 10, then a subclass might return values between 2 and 9, but not between 2 and 11. We usually don't have have a specific Int1_10 -type, but rather just int / i32 / etc, but the constraint still applies. But yeah, Prime is aware of the SOLID principles, but does not seem to understand them
@isodoubIet
@isodoubIet 3 ай бұрын
The problem I have with the LSP is that the only way to satisfy it for any nontrivial situation is to not use inheritance at all. Any nontrivial use of inheritance will break properties provable about the parent class, _that's why we use it._ But I agree with your overall claim.
@user-gq2bv6dm9s
@user-gq2bv6dm9s 3 ай бұрын
@@isodoubIet I have used inheritance extensively in my codebases over the years and don't find that to be true. I start with a base class representing some over-arching general entity in my domain, like an Item class in an RPG, then subclass multiple levels as necessary, like Weapon / Consumable, and have functions that take in any x of type Item, meaning that both Weapons and Consumables are passable as per the LSP. Could you elaborate on an example?
@helgenlane
@helgenlane 3 ай бұрын
​@@user-gq2bv6dm9sI agree and I don't really know what that guy is talking about. But there are some situations when inheritance leads to weird solutions when an object must have properties that belong to two different types. Example: a car can have value and weight of type Item and hitpoints of type Entity. Which forces us to create carItem and carEntity which are later referenced by car object. It's not such a big issue, but can lead to confusing code, I guess.
@helgenlane
@helgenlane 3 ай бұрын
​@@user-gq2bv6dm9sI agree and I don't really know what that guy is talking about. But there are some situations when inheritance leads to weird solutions when an object must have properties that belong to two different types. Example: a car can have value and weight of type Item and hitpoints of type Entity. Which forces us to create carItem and carEntity which are later referenced by car object. It's not such a big issue, but can lead to confusing code, I guess.
@blinded6502
@blinded6502 3 ай бұрын
Here's my take on getters/setters: they are useful for math vectors. Just do "vec.length += 2" to make vector longer by 2. Or "vec.length = 1/vec.length". In fact, they are useful for many objects, that can have multiple parametrizations, but internally we just store one parametrization, as to not have multiple types doing same thing.
@tenshizer0
@tenshizer0 3 ай бұрын
Duck typing is not checked only in runtime. In C#, a foreach loop uses duck typing and verify at compile time if the object has an "GetEnumerator" method (either a classic method, an implementation of IEnumerable, or an extension method)
@deez_dev
@deez_dev 3 ай бұрын
I just wanna say that asking the chat for vote or testing something with coding or searching anything is VERY helpful, Thanks man..
@GoYoops
@GoYoops 3 ай бұрын
Majority of Prime's viewers are college students and non professional devs, college students are taught Java in school which is OOP so the poll makes sense.
@recursiv
@recursiv Ай бұрын
meh. In college, I never wrote any code to model AST nodes. After college, I found that a class hierarchy was the most natural way to do it I could find. Is it the best? I don't know. But it seems to work better for me than anything else I've seen. Skill issue? Maybe.
@s1lkysl1m83
@s1lkysl1m83 5 күн бұрын
My college taught c++
@DirkScripts
@DirkScripts 3 ай бұрын
Loved hearing even a tiny bit of your thought on lua and metatables, I begun my coding journey in lua (im sure you can figure out where..) and the learning of metatables and metamethods was for me a godsend when I learned when, where and how to use it properly. Would love to see you go through some lua some day
@rikschaaf
@rikschaaf 3 ай бұрын
Prime: OOP or FP? Me: yes
@gagagero
@gagagero 3 ай бұрын
Me: Smalltalk.
@colemanroberts1102
@colemanroberts1102 3 ай бұрын
Found the scala dev
@BlazingMagpie
@BlazingMagpie 3 ай бұрын
@@gagagero Chad
@rikschaaf
@rikschaaf 3 ай бұрын
@@colemanroberts1102 Kotlin, but Scala is fun too. (Actually a java dev though professionally. Java+Lombok+Manifold can get quite close to Kotlin though)
@Alex-ry1gv
@Alex-ry1gv 3 ай бұрын
Crazy how long the discourse between paradigms has been going on when it's so obvious that 1. it's almost always domain/implementation dependent and 2. a combination of everything is almost always the best. Procedural by default with OOP concepts for managing data/custom data types and FP concepts for managing logic and control flow, and 1-2(max) layers of declarative functions wherever is practical with the rest prioritizing an imperative style. Extension traits and composition over inheritance every time for the OOP side and you're golden. Just need a good, *un-bloated* language with a best-in-class type-system (never used but I only hear great things about Hindley-Milner) that isn't trying to be a one-trick for once and devpression would plummet.
@spencer3752
@spencer3752 2 ай бұрын
41:33 "To a certain extend..." Bro is so OOP-brained he made a Freudian typo
@peterszarvas94
@peterszarvas94 3 ай бұрын
go is just works, no fancy concepts, easy syntax, good standard library, fast...
@AK-vx4dy
@AK-vx4dy 3 ай бұрын
@5:38 In ODIN you simply perifx function with struct type name car_add, car_delete and everything is clear, what belongs where
@jackmordaunt5410
@jackmordaunt5410 3 ай бұрын
Yeah, the syntax argument is silly. You can also write Object Oriented code in Odin as well, it just doesn't have any specific syntax for it.
@amoskevitz
@amoskevitz 7 күн бұрын
What do you name a function that takes two things? Car_road_drive? Road_car_drive? Both? The power of typing "car." and getting a list of functions that are available is specifically what he referring to.
@AK-vx4dy
@AK-vx4dy 7 күн бұрын
@@amoskevitz first thing (argument) is treated as object on wich methods are called on other languages
@flarone
@flarone 3 ай бұрын
Come to the black side, my son. Don't give up the coffee. Give up the cream and milk, the froth. the sugar.
@Jabberwockybird
@Jabberwockybird 3 ай бұрын
Like my coffee like my women 👩🏿
@isodoubIet
@isodoubIet 3 ай бұрын
@@Jabberwockybird Ground coarsely and dipped in boiling water?
@steveoc64
@steveoc64 3 ай бұрын
@@Jabberwockybird roasted from greens using a portable heat gun and a frying pan, then ground and drawn through a glass syphon ? Yeah Boi
@andybrice2711
@andybrice2711 3 ай бұрын
I'd say cycle off caffeine for a few days every couple of weeks. That way you don't get addicted, and it works more effectively.
@lemon__snicker5973
@lemon__snicker5973 3 ай бұрын
@@andybrice2711 100 mg of caffeine, i.e., around just under 250 mL (1 cup) is all ya need in a single day. The hard part is keeping it limited to a single cup.
@anonymous49125
@anonymous49125 3 ай бұрын
getters and setter in c# can allow for private setting and public getting, so you can't change the property externally outside of the class, but the property can be accessed from outside of the class. uncle bob hates properties in this way because it adds 'side effects', so I generally try and not use them to add functionality when fields are changed... but a use case for that is: when the 'player score' int is increased, update the score ui to reflect this change. That is the case of 'just because you can doesn't mean you should' - and there is no communicated expectation that updating playerScore++; would do all manner of other things other than increase the int... and that can cause headaches and chasing down bugs. I generally would only use it for controlling member access...
@jadonbelezos2583
@jadonbelezos2583 Ай бұрын
personally, a great example of getters and setters. is one, you want read only access from the outside only. but internally allow it to change for getters and for setters, maybe the data being inserted alterted must meet some requirements that cant be statically typed checked. so you have the setter do the checking there
@bonkers_dave
@bonkers_dave 3 ай бұрын
in c# getters and setters let you set breakpoints on prop change and also work a little better with intellisense. also if a class is defined in a dll, you can add code later to hook the getter or setter without altering the interface. so I kinda like them.
@cod-the-creator
@cod-the-creator 3 ай бұрын
A video of a man reading an article.
@petrus4
@petrus4 3 ай бұрын
"OOP is a path to many abilities that some consider...unnatural."
@Oi-mj6dv
@Oi-mj6dv 3 ай бұрын
CLOS oop*
@petrus4
@petrus4 3 ай бұрын
@@Oi-mj6dv What do you mean?
@prism223
@prism223 3 ай бұрын
Generic functions give the best of both worlds, e.g. Common Lisp Object System (CLOS)
@Oi-mj6dv
@Oi-mj6dv 3 ай бұрын
Based take.
@rumplstiltztinkerstein
@rumplstiltztinkerstein 3 ай бұрын
I think that getters and setters are useful when we need to add some checks and boundaries to the attributes. Like, if we want to verify the parameters before modifying it, we create a get and set, where the set verifies the inputs. If there is no need to verify the data that we are setting, just make the attribute public.
@draganoidept
@draganoidept Ай бұрын
I find it hilarious that this video was recomended to me as I am learning OOP from my course! Gotta say thats a win for a algorythm this time!
@landonyarrington7979
@landonyarrington7979 3 ай бұрын
"We are using languages that force us to think in classes with architectures that don't require objects" 👏
@sids911
@sids911 3 ай бұрын
One of my favourite feature in c++ 23 is how good the concepts have gotten, its like attaching behaviour checks like requirements of methods and variables etc. I haven't touched C++ inheritance in a new project
@complexity5545
@complexity5545 3 ай бұрын
C++ is kind of trying to phase out inheritance. Its still there, but programmers have been coding complex problems for the last 20 years and we know inheritance is bad (for non-gui stuff).
@sids911
@sids911 3 ай бұрын
@@complexity5545 yeah the langauge proposal lead by bjarne stroustrup if I remember correctly, he wanted it to land in C++0x/11 but it didn't happen because of radical change in language. I am glad its here though, I absolutely hated the previous errors lead by templated code (its still here but concepts. are better)
@SergeAzel
@SergeAzel 3 ай бұрын
People love to tout that getters and setters for private members are "good" because they compile as functions and can replace that implementation with a calculation, or redirect to a different property, in the future. In practice, this rarely happens. The more commonly needed point for getters and setters, at least in some languages, is to define asymmetric access levels to state. Unless I am mistaken, in C# it is still impossible to grant public access to reading a member value, without either granting write access, or encapsulating via property.
@Fiercesoulking
@Fiercesoulking 3 ай бұрын
Strictly speaking you are right but C# simplify and hides getter and setter and reduce it to 1 liner so you need only change {get;set;} to {get;}. Actually encapsulation only makes sense when others work on your code or at least works as bridge like a public API or sever -client communication.
@egemengol306
@egemengol306 3 ай бұрын
How about erlang processes as objects? They fit those OOP definitions even better than classes. They hold state shared between a set of functions, fully encapsulated, effectively subtyped since eny message can be received by any process that accepts it. Sounds very OOP to me, you write them with FP though 🤘
@kelian9364
@kelian9364 3 ай бұрын
How can we understand OOP if we cannot answer ourselves, “Who are we really?”
@ofmouseandman1316
@ofmouseandman1316 3 ай бұрын
You down with OOP (Yeah you know me)
@CouchProgrammer
@CouchProgrammer 3 ай бұрын
What OO in the end actually is Is discipline imposed upon the use of pointers to functions. Discipline imposed upon the indirect transfer of control and in exchange for that discipline we got a benefit and that benefit was The easy ability to structure our modules! So that the source code dependencies oppose the flow of control in most structured applications the flow of control points in the same direction as source code dependencies in a good object-oriented program And this is how you know it's a good object-oriented program key dependencies are inverted to point against the flow of control and that inversion is accomplished through polymorphism So the OO Paradigm is polymorphism which is discipline imposed upon indirect transfer of control. (c) Uncle Bob
@RoyRope
@RoyRope 3 ай бұрын
I see you know your clean architecture well
@CouchProgrammer
@CouchProgrammer 3 ай бұрын
@@RoyRope As my team lead said 8 years ago, I get paid to think, and in order to think you need to know things well.
@7edd7
@7edd7 3 ай бұрын
He is Unlimited coding content provider
@madduxvitrano8981
@madduxvitrano8981 3 ай бұрын
ccp mentioned
@davidhenn2987
@davidhenn2987 3 ай бұрын
Always when I tried to create a good inheritance chain (bird), I later in time find the "ostrich" and have to change all user to "flying bird)....
@helgenlane
@helgenlane 3 ай бұрын
That sounds like poor planning. 99% of the time it's predictable.
@sproccoli
@sproccoli 3 ай бұрын
You could think of c as object oriented, just at a module level. If the identifier isn't extern, theres nothing pointing into it from the outside. So to access it, you have to access it through the outward facing public interface(methods/accessors) that were compiled into the module. Otherwise you would have to like, parse the memory of another module to in order to get at the data. Each module can matain the storage of a different collections of data types, and everyone else just points into these types via handles/pointers.
@gregroyclark
@gregroyclark 3 ай бұрын
"This is a gathering place of a lot of them" 😂 Also don't quit coffee
@NoodleBerry
@NoodleBerry 3 ай бұрын
As a C++ enjoyer, structs with functions rock Yes I do create real classes but we love glorified buckets of data
@Oi-mj6dv
@Oi-mj6dv 3 ай бұрын
Glorified buckets of data is where is at
@JuusoAlasuutari
@JuusoAlasuutari 3 ай бұрын
Fighting off a creeping understanding of OOP is a daily struggle.
@Gennys
@Gennys 3 ай бұрын
45:40 I'd like to point out that getters and setters ARE methods. Having them appear as fields with assignments is just weird syntactic sugar and functionally unimportant. Especially in a language like JavaScript.
@tomiczdarko
@tomiczdarko 3 ай бұрын
I hate this in C# too. I just don’t get the point of properties. It really confuses beginners in programming.
@uumlau
@uumlau 3 ай бұрын
The problem with inheritance (and LSP) is that it is strictly hierarchical. It breaks when real life introduces cross-cutting concerns across multiple classes with different inheritance trees. We get all the weird object names because the "fix" for cross-cutting concerns is to add new classes to make the hierarchy self-consistent. Then as the code runs into more and more reality, more and more classes are added to the hierarchy, because hierarchies are only occasionally applicable to some real life problems, but not most.
@user-gq2bv6dm9s
@user-gq2bv6dm9s 3 ай бұрын
You should not use inheritance to model everything because not everything in real life is hierarchical. Some things are compositional, and you should use composition to model them. But many things in real life are hierarchical, and it is awkward to avoid using inheritance in those scenarios.
@Andrei-zc1be
@Andrei-zc1be 3 ай бұрын
manually rebuilding inheritance tree over and over with ad hoc nodes that make no sense
@justanothercomment416
@justanothercomment416 3 ай бұрын
@@user-gq2bv6dm9s Exactly. Some domains inherently lean into inheritance. Some into composition. Some into neither. The failure isn't OOP or composition or functional or whatever. It's the designer. The right tool is always the right tool. The trick is knowing when to use the right tool.
@justingirard6453
@justingirard6453 3 ай бұрын
Awesome perspective
@ifeoraokechukwu1346
@ifeoraokechukwu1346 3 ай бұрын
This reality which a lot of software engineers like you @uumlau paint is a compelling one. However, it's due to the abuse of inheritance and not inheritance itself. I recently believe that there's nothing wrong with inheritance as a tool for code reuse. Yet, there's everything wrong with how inheritance is used and implemented in most codebases around the world. Inheritance hierarchies should be built bottom-to-top and not top-to-bottom. All of the problems and issues people experience with inheritance has to do with software engineers building the hierarchies from top-to-bottom. Issues like tight coupling, deep levels of inherited classes. Most examples of inheritance innocently suggest you should create the parent class(es) first. This is wrong! When using inheritance create your sub class(es) first and build the hierarchy from the bottom (subclass) to the top (parent class). For instance, why do i need to create a Shape class before i create a Circle class OR Why do i need to create a Bird class before i create an Ostrich class ? Why ? There's no reason. Even the Java Standard Library got this wrong! And now for years and decades, we have carried on like this. Doing the wrong thing and expecting things to be fine and when they're not fine, we blame to tool. We blame inheritance for all the bad things that we encounter. When we should blame our ways and methods of using inheritance. Most of the nagging issues around Inheritance disappear when we build from bottom-to-top. We even discover that most of our parent classes become Abstract classes as opposed to concrete classes when we use inheritance properly. I know this because i have applied it to my work and seen better results. Read more here (in my article): isocroft.medium.com/the-growing-spate-of-ill-subjectivity-and-presentism-about-software-engineering-practices-c74c6bf34cad
@VietTranPhuoc
@VietTranPhuoc 7 күн бұрын
Getter and setter were actually rooted from C# concept that you can bind those attributes directly to UI components. So it's actually not for the better code, it's for better binding, which is not useful outside C#
@BryonLape
@BryonLape 3 ай бұрын
The moment a programmer writes getters and setters, they are no longer doing OOP.
@ayoubelhioui2205
@ayoubelhioui2205 2 ай бұрын
why?
@markusheimann5708
@markusheimann5708 2 ай бұрын
@@ayoubelhioui2205Because it violates encapsulation. Whenever my users want me to show more than an empty screen, I tell them that it is not possible because I cannot expose the internal state of my objects to them. There are many bad getters and setters and there are many good getters and setters and there are many bad developers and only a few good developers.
@TruthAndLoyalty
@TruthAndLoyalty 3 ай бұрын
inheritance has really specific use cases that don't come up that often. while technically useful, I don't think it should be considered a "pillar" of oop.
@twenty-fifth420
@twenty-fifth420 3 ай бұрын
Tbf, Composition should replace it as a Pillar. Then again, the four pillars most people consider OOP, well not all are…exclusive to OOP. Namely Encapsulation or Polymorphism.
@paprikar
@paprikar 3 ай бұрын
True Its more (actually, all) about interface (contract) inheritance, not about actual code inheritance
@rokker333
@rokker333 3 ай бұрын
I agree. But to give context: in the early days of OO like the 1980s and 90s, interfaces were mostly classes and not defined as an abstraction of its own. So, there were different methodology types of inheritance: type inheritance, interface inheritance and actually interface implementation. Bc the latter was only deriving from an interface and implement the behavior. Also, in the beginning type inheritance was much more praised. With experience "good" OO principles were defined. This is where LSP and Gang of Four come from. Nevertheless, inheritance is a pillar of oop. It is only not to mistakenly used where a has-a relationship is the better option. And that is often the case. A guiding principle is to think of if the relationship is static or dynamic.
@jongeduard
@jongeduard 3 ай бұрын
I agree too. I already did another reply like this, but my point was, when you leave inheritance away, OOP no longer conflicts with functional programming too. Somebody mentioned that OOP is actually more opposite too procedural than to imperative. This is at least correct for the concept of methods. Languages like Rust still use methods, which add behaviour, logic to data types, effectively turning those into objects. Polymorphism in functional programming languages is achieved via type variants, discrimated unions, like the enums in Rust. Generics are also used. And extension methods like C# has also count here, because these are often applied to interfaces, and are even used as a system of higher order functions known as LINQ.
@CottidaeSEA
@CottidaeSEA 3 ай бұрын
​@@twenty-fifth420There are cases where inheritance is the superior option. I just don't trust myself or others to know when that is the case, because if it isn't then you're going to hate life.
@aj98767
@aj98767 3 ай бұрын
great content, prime. looking forward for more
@remrevo3944
@remrevo3944 3 ай бұрын
On structural vs nominal typing/the usage of explicit traits: I would say the biggest upside of traits is that it has namespacing builtin. That way you can implement multiple traits with the same method names independently, which might otherwise be a big problem.
@SimGunther
@SimGunther 3 ай бұрын
Only Alan Kay understands OOP. The rest just think classes (Simula style) = OOP, which is NOT the case.
@freesoftwareextremist8119
@freesoftwareextremist8119 3 ай бұрын
You'll understand too once you've reached Lisp enlightenment.
@SimGunther
@SimGunther 3 ай бұрын
@@freesoftwareextremist8119 I have and knowing that closures are a poor man's objects & objects are a poor man's closures, SBCL is one of my best tools in my toolbox alongside NeoVim :)
@Oi-mj6dv
@Oi-mj6dv 3 ай бұрын
​@freesoftwareextremist8119 ALL HAIL THE CLOS
@gustavbw
@gustavbw 4 күн бұрын
19:50 thats y we do interface composition and ignore inheritance in all instances besides very specific, well-known, specialized cases.
@adrianspikes6454
@adrianspikes6454 3 ай бұрын
😂😂😂 Everytime Prime talks bout C# i😢have that same question! How good is he at C#?? OOP is more cumbersome but from an organizational standpoint, I think it's the best strategy. That being said, if you can't make ur C# code look like Zoran Horvat then I'm not sure what your aspirations are in the world of C#. His approach has functional and OOP blended together. Which is a true sign when you Master a programming language. Edit: hold up, prime does not know who Mrs. Liskov is?!? Wtf??
@user-gq2bv6dm9s
@user-gq2bv6dm9s 3 ай бұрын
I have seen multiple thumbnails/clips/titles from him dismissing OOP, only to find that he does not even know what liskov substitution is... Not a cool use of his influence in the programming space.
@user-tg5hz2gw1t
@user-tg5hz2gw1t 3 ай бұрын
Nouns and verbs = queries and commands. Differentiate the two and you have command query separation. It's a good idea for low-level functions, but breaks down as you ascend your pyramid of abstractions. It's correlated but not equivalent to OOP, it has more to do with whether a program is stateful or not.
@sbditto85
@sbditto85 2 ай бұрын
Liskov still applies to interface/trait based programming. It means if something implements the interface it must do so without changing the intention of the interface. You can’t just pick and choose what methods of the interface you implement. (It may meant you need to split the interface or have the design wrong if something can only implement some of the interface)
@dnoordink
@dnoordink 3 ай бұрын
I use subtyping extensively in my c++ UI/rendering/game library. It is very useful for describing eg Window -> Control -> (Listbox / EditBox / Scrollbar) or other similar items that all have a position on screen, rendering and input similarities. I don't understand why people have such disdain for inheritance.
@brokula1312
@brokula1312 3 ай бұрын
I guess it works until you have to duct tape the object graph. While it's pretty shallow it's all sunshine and rainbows.
@almantuxas9248
@almantuxas9248 3 ай бұрын
What if I wanted to have something that's both a ListBox and an EditBox?
@Salantor
@Salantor 3 ай бұрын
Two levels deep is manageable. Ten levels though... I guess people are just burned out on way too big inheritance chains so they decided to just throw the entire concept out the window.
@defeqel6537
@defeqel6537 3 ай бұрын
What if you have a control that needs to behave like both a listbox and a scrollbar?
@Daniel_Zhu_a6f
@Daniel_Zhu_a6f 3 ай бұрын
one does not need inheritance for that. in low-level languages like C, just cast a pointer of several types to a common type, that has same field offsets and sizes as the common part. it's also possible to do composition or exclusive unions.
@Bliss467
@Bliss467 3 ай бұрын
Kotlin does well by eliminating all boilerplate to properties (fields with getter and setter) by basically just automatically wrapping declared fields in getters and setters. Still begs the question of why do it at all tho. Only advantage is that you can overload the get/set, which I like for pretty readability, but part of me thinks that code that does something expensive under the hood but just looks like a property access is code that’s lying to you. It’s just some part of me really want to obey data = noun, function = verb
@ea_naseer
@ea_naseer 3 ай бұрын
i actually like Kotlin's getter and setter for all object property assignment and referencing but I think there has to be a better syntax to whatever Kotlin is delivering
@NotMarkKnopfler
@NotMarkKnopfler 3 ай бұрын
The problem I'm having is I'm encountering people that do not understand procedural programming! Some people I work with think that my code is really weird because I rarely write classes. Their default position is to encapsulate and information hide. They are defending themselves against some imaginary future battle that is raging in their minds where the code has to be modified or re-factored, and "putting everything in classes makes it easier" - because they read it in a book in college. However, I've been writing code for money since 1988, and I can tell you that code re-factoring never happens. The code just gets junked and re-written from scratch. It really does. If you understand the problem domain, it's just easier to start from scratch unless the change is very trivial. For me, if I don't need multiple instances of something (I'm talking about C++ here) then it does not go into a class. It's that simple. Sometimes you are forced into them - for example in C# you'll often be given an object instance as a return type. Fair enough. I do like how the dot notation can make code self describing. In C++ I can get a similar effect from namespaces without requiring classes. OOP is fine, just don't over use it.
@arch126
@arch126 3 ай бұрын
Hmm I wonder why code is easier to write from scratch then refactor when you made it hard to refactor 🤔
@NotMarkKnopfler
@NotMarkKnopfler 3 ай бұрын
@@arch126 To me, re-factoring non-trivial code requires getting into the mind of the person that wrote their code and understanding their style. I have been successful over the years in doing that - sometimes you know which colleague wrote a piece of code. However, it's often just too damn difficult, or too damn time-consuming. So it gets junked and re-written. I'm not saying it's the correct thing to do - I'm just saying that it happens.
@skyjug295
@skyjug295 3 ай бұрын
The biggest problem I've found with oop(I'm a junior dev) is that it forces me to make my code into a specific structure that very easily loses its structure by implementing a virtual method in the superclass that doesn't belong there but ends up there anyways because it's easier and then if you want to change a class, you have to change every class that has that class, I've found it more useful when making something that needs to or benifits from hiding details behind abstractions.
@evancombs5159
@evancombs5159 3 ай бұрын
To be blunt, that isn't an OOP issue but a skill issue. You are using inheritance wrong if you run into such a situation. It is a sign that you need to rethink how you are doing things.
@Fiercesoulking
@Fiercesoulking 3 ай бұрын
I'm confused virtual methods are the ones which are able to be overwritten in the inheritance so why are you run into problems with it ?
@mennovanlavieren3885
@mennovanlavieren3885 3 ай бұрын
The biggest problem with OOP is that it is usually taught wrong. If they teach you inheritance as one of the major things to know, they are doing you a disservice. I agree with most things in this video. If you need to hold data and pass data around: use records (structs). Think about making the fields readonly. If you need to connect more distant parts of your code: use Interfaces that define behavior. If you have a thing that has internal state and some exposed behavior: use an object with public methods and private fields. Objects can implement one or more interfaces. Interfaces can extend other interfaces. Base classes and virtual methods are almost never used. Only in some cases and only within a single module. Never make public Base Classes. Use Interfaces. -- The way C++ "invented" OOP in the beginning was a big hack to make message passing work relatively fast with the technology of the time. That way of programming stuck around for to long. Now C++ is much better, but habits die hard.
@mayatrash
@mayatrash 2 ай бұрын
@@evancombs5159No. sometimes it’s best for the „code to do what the code needs to do“. OOP often feels like translating simple things into a completely different and very static way.
@jdawg443
@jdawg443 3 ай бұрын
I'm one of the Haskell nerds that has mostly made peace with OOP. Classes are just what OOP languages have instead of variant types and pattern matching. And they're extensible in different ways, since classes allow adding new types without changing existing code, and variants allow adding new functions without changing existing code. But classes can't add new functions to the interface without changing existing code, and variant types can't add new variants without adding it to all the existing pattern matches. It is often useful to be able to add more types, so FP languages will generally have mechanisms to do it as well. As a rule, inheritance is often coupling a lot of complicated stuff together, which you can do in any language but this particular mechanism was heinously encouraged in the earlier days of OOP. I use interfaces and abstract base classes and rarely override methods. And don't make things too abstract out of the gate. Your system will never support every imaginable type of extension. Just focus on the extension that you need. This is also possible any language. I have no doubt that architects of the 90s and 00s would have made us hate Haskell and FP if it were the language de jure. We don't know how to make software still and we really really really didn't back then. Another failure was obviously that well behaved stateful objects would easily compose into a well behaved stateful program. Absolutely not the case.
@br3nto
@br3nto 3 ай бұрын
20:26 you can get that same inheritance vs composition complexity when considering only interfaces (or rust traits). Like if using interfaces/traits to assign behaviour, at some point you need a way to require a thing that implements multiples of these interfaces/traits, at which point you’d probably introduce a new interface that implement these interfaces. So classes and subclasses aren’t where the complexity exists or where it’s defined. The classes are just implementing the complexity.
@arden6725
@arden6725 3 ай бұрын
You wouldn’t make a new trait that requires other traits. You would write functions that expect some type that implements exactly what you need to use in that function
@7th_CAV_Trooper
@7th_CAV_Trooper 3 ай бұрын
In 1995 we were building C structs with function pointers. These could live on the stack or heap. We created name spaces by building libs. Typedefs functioned as interfaces. No inheritance. Felt like OO to me.
@7th_CAV_Trooper
@7th_CAV_Trooper 3 ай бұрын
I found a code sample from the olden days. It was chipped into my stone tablet. Encapsulation and information hiding is for low trust societies. C programmers have no need for such things. We can also hold the entire program in our heads, so we don't need no stinkin' type safety either. It's void pointers all the way down baby. typedef struct { SCREEN_OBJECT_T so; int item_count, item_selected, top_item, display_count; void** sub_list; void (_far* DisplayItem)(); void (_far* OnChange)(); void (_far * OnScroll)(); } LISTBOX_T;
@locobob
@locobob Ай бұрын
This guy is amazing. He can make an hour long video reading and reacting to an article interesting.
@shamz1708
@shamz1708 Ай бұрын
What makes Liskov principle nice for me is that in algebraic terms, every element from any algebraic structure is also an element of its algebraic superstructure. In this sense, it allows for very neat way to implement tools like topological / algebraic reasoning in code. Primarily used by analysts and scientists (albeit same).
@jeremykothe2847
@jeremykothe2847 2 күн бұрын
Properties in c#, along with their getters and setters, mostly exist to support property pages. ie: designers that expose properties in some UI.
@isodoubIet
@isodoubIet 3 ай бұрын
As for structural typing and C++, it's been around since forever (templates). Concepts is just a better way of checking requirements on template parameters. The same kind of checking could still be done before, with a technique called SFINAE, at a compile time (and unfamiliarity to beginners) cost, but the important bit of structural typing is templates, not the checking.
@theonlyqwert
@theonlyqwert 2 ай бұрын
Getters and setters are good for bounds checking. Checking state like if its initilised. Im more embedded swe and when im working with some sensors which have to checked to see if they are live and safe to be polled/queried. Sure i can do other ways but getters and setters encapsulate this behaviour so its fast and slick.
@Tony-dp1rl
@Tony-dp1rl 3 ай бұрын
Comparing the terror that is OOP with the theoretical intent of the original creator, is like comparing Nuclear Weapons to Relativity.
@lezzbmm
@lezzbmm 28 күн бұрын
so real
@namewastaken360
@namewastaken360 3 ай бұрын
I do like inheritance for a nice strategy pattern. That seems more nicely contained than having to pass in a implementation of an interface rather than just calling some abstract/virtual methods.
@Joker22593
@Joker22593 3 ай бұрын
I was taught that getters and setters should never ever be used, and then I was tasked to write a whole (simple) game engine without them. I have never used them since, and I understand the point of OOP much better than before.
@complexity5545
@complexity5545 3 ай бұрын
This is the way.
@gardian06_85
@gardian06_85 3 ай бұрын
if everything is getters and setters you have too many. if nothing has getters and setters; you have a struct with functions. the big thing is "if it needs to be validated it should have a setter" "if the member should never be written to externally it should have a getter" Getters and Setters are just special function overrides for the =operator on the member.
@Fiercesoulking
@Fiercesoulking 3 ай бұрын
There 2 ways you can write in OOP state and stateless . In one you get only operation results as object never manipulate the object itself and you are per default thread-safe but you have the cost of memory allocation like in FP. In the other you run often in getter/setter scenarios which is better for speed and memory optimization but also you have sometimes not all information all at once in this case it is from FP perspective like a closure. In general OOP is just making a list of your functions and variables under a name which doesn't oppose FP . Its more like the question of if you like your stuff messy or ordered but yes there is also stuff where OOP doesn't help like when you working internal data streams where everything is just logic . There FP is more helping hand when you are able to write in it.
@octavio2895
@octavio2895 3 ай бұрын
Senior engineer at Netflix, 10+ of SWE experience, worked in academia, gave a very popular course about algorithms and didn't know about Liskov Substitution.
@orterves
@orterves 3 ай бұрын
Functional programmers like Erlang programmers are actually the best OOP programmers
@oserodal2702
@oserodal2702 3 ай бұрын
It's probably because they try to clean their functions and make them as pure as possible.
@Cmacu
@Cmacu 3 ай бұрын
Yes and unicorns are the best horses… btw Linus would like to have an f word with you
@iskamag
@iskamag 3 ай бұрын
Erlang is an object oriented language
@StrengthOfADragon13
@StrengthOfADragon13 2 ай бұрын
By analogy, Go sounds like a speed square, it's not gonna work for machinists precision, but if you are looking for a practical fast tool for general building it is typically pretty good
@justgame5508
@justgame5508 3 ай бұрын
If I want to provide behaviours for example with a bird I just use interfaces. IBird, IFlyingbird, IDrawable, ISerializable etc. Avoids the nested inheritance trees but provides the same benefits and makes DI, testing etc easier
@johnbell1810
@johnbell1810 3 ай бұрын
OOPS is when you approve an PR that breaks production
@brianviktor8212
@brianviktor8212 2 ай бұрын
Exposing setters for properties is something I do sometimes. It's for rare-use things in classes, or things that allow the user to customize it for special cases. Like "ThrowExceptions", making the class instance's methods throw when exceptions occur, or "AllowGuests". Anything that is rather important is already in the constructor. What I want to avoid is putting ALL of these into the constructor. Imagine you can only create an instance of a class if you have like 20 parameters, and no indication to what is default, or what constellation makes sense (yes that would be sloppy code, but it's just an argument).
@riskyOriginal
@riskyOriginal 3 ай бұрын
In c# i dont bother with inheritance, I just use dependancy injection. Its much cleaner to me, just inject filght to sparrow and dont for the ostrich 🤷‍♂️
@markogalevski6088
@markogalevski6088 3 ай бұрын
You can always add methods to your C structs by adding function pointers pointing to static functions that take pointers to the struct as the first argument...
@neko6
@neko6 3 ай бұрын
The use-case for getters and setters over functions/direct access isn't "it's better to hide the function" or "it's better to have a trivial getter/setter function over direct access" The real use-case is when you have code that exposes properties that are already being used directly (sometimes outside your control, like when you ship a library) and you want to change the underlying implementation without breaking clients Obviously there isn't a reason to expose a .length getter in new code, just expose .length() and it's clearer
@jeffreyblack666
@jeffreyblack666 3 ай бұрын
For the most part, get and set are useless. But there are use cases. And while they can be replaced by functions, they don't need to be. This is especially true if you are using a language that already has them as properties instead of functions. Another case other than computer properties is when you have an object which is composed of multiple objects, and a property for the overall object is actually a property for one of the inner objects, with the getter and setter passing the value to/from it.
@fludeo1307
@fludeo1307 3 ай бұрын
The thing with abstraction is that everyone see the "limiting factor" as a downside. In my job, we had this internal project that it was about casual party games to "break the ice". The dynamic was: someone with an account creates a lobby, then you join with the phone and the game starts. The thing is i had to make a little framework for the games inside the server. So I use Inheritance to force the people in the future to follow the gameloop, so every game has the same structure. I used the "Limiting factor" so future devs dont end up making a mess. With that little framework we could make a game in just 1 to 2 days (all tested, back and frontend, only 2 devs).
@chudchadanstud
@chudchadanstud 3 ай бұрын
Not a game dev but we do the same for industrial automation and R&D. We use inheritance to handle most of the nitty gritty stuff, so that we only worry about project specifics. This also means that of someone goes off rails and builds something without documentation we at least know where to start reading and we can reconstruct the spec.
@SimonBuchanNz
@SimonBuchanNz 3 ай бұрын
How is this different to passing an implementation of a "game loop interface" to a "game runner"? (As opposed to using inheritance) Not to say that that's an argument against inheritance (at least by itself) but one of the biggest issues with OOP is not being able to consider other options than inheritance.
@fludeo1307
@fludeo1307 3 ай бұрын
@@SimonBuchanNz you use inheritance when you want to implement something in the parent class, if you only have to define a "type" just use an interface.
@SimonBuchanNz
@SimonBuchanNz 3 ай бұрын
@@fludeo1307 I literally don't understand what you mean. That inheritance means you can call parent class methods? Sure, or you can pass in "this" to the interface, or you can not use a class and use free functions for common behavior, or whatever other features your language supports (eg Rust extension traits, Java/C# interface method defaults, ...)
@fludeo1307
@fludeo1307 3 ай бұрын
​@@SimonBuchanNz inheritance means you literally inherit behavior, data, and structure. if you pass "this" to the interface you still have to implement the method on the "child class", so you have the same code everywhere. Implementing the method in the parent class would save you writing the same method over and over.
@kevinfleischer2049
@kevinfleischer2049 2 ай бұрын
Its interesting to watch a guy conveying knowledge sprinkled with experience to an audience with a severe attention deficit disorder.
@PieJee1
@PieJee1 3 ай бұрын
I use very little inheritance since it's often used just to reuse the same methods. Always composition over inheritance. I see many people fail here. Most people don't understand Domain Objects either. Domain Objects are not: - using POPO/POJO/POCO objects - splitting your entities in categories. - using a data mapper as ORM The reason why people do think this has to do with that we use MVC where applying domain objects would result in 3 objects per domain (for request/validation, storing and for response/view). The result is that people try to move these 3 objects into one domain object and use things like decorators/attributes/annotations to apply to either all 3 of them.
@RedDread_
@RedDread_ 2 ай бұрын
Getters and setters are only useful when you what to perform a task when a property is changed. For example in flutter when using providers you might what to notifyListeners when a property is changed so all the listeners all update
@digimbyte
@digimbyte 3 ай бұрын
the purpose if getters and setters is mostly for privacy of a variable so you don't fetch a value that should not be mutated from outside its own instance. its also used to keep values private from others, typically used when we want to obfuscate values programmatically from other functions. part of it is to also enforcing read only or static conditions TLDR: its to handicap the code so we don't make dumb mistakes. and maybe make it private/secure with obfuscation tools
@markuskonrad6049
@markuskonrad6049 3 ай бұрын
That does not make sense. If the goal is to prevent outside modification, there are only two ways to achieve this: Use an immutable representation, or hide the information from the outside. If you have Setters your object is not immutable. If you have getters your object does not hide internal information. Please explain how getters and setters help with keeping things private or preventing mutation.
@NuncNuncNuncNunc
@NuncNuncNuncNunc 3 ай бұрын
Just a guess, but maybe admonition against public access stems from needing "reactive" attributes before reactive was a thing, e.g. needing to perform a side effect or performing validation. Two use cases in modern JS are when the underlying structure is hiding some implementation detail, e.g. using setter to hide use of BehaviorSubject
@grzegorzpolit219
@grzegorzpolit219 Ай бұрын
OOP is about doing everything with some memory area only with set of functions, rest is only syntactic sugar. So you can be object oriented programmer even if you code in assembler. Change my mind ;)
@gabrielbeaudin3546
@gabrielbeaudin3546 3 ай бұрын
Getters and Setters are a problem since they introduce hidden control flow. For instance .Lenght in prime example add two fields but from the outside it looks like your just using a field, it could be doing an square root everytime but you wouldn't expect that from the syntax. In c# for instance properties are just regular methods under the hood so why having them in the first place, it gets compiled to SetLenth() and GetLenth().
@catwhisperer911
@catwhisperer911 3 ай бұрын
The most OOP I go is Object. Composition is far superior to classic o o classes and their instances and avoids the spiral down the rabbit hole that oo inheritance takes you.
@justanothercomment416
@justanothercomment416 3 ай бұрын
This is a ailure of your education. Do they not teach "is a" vs "has a"? "Is a", means inheritance. "Has a" means composition. You can use both at the same time. The complaints here about OOP is really a skill failure in understanding proper OOP design and engineering. For example, people often create a Car and then derive a Truck and then mandate a Car or a Truck also has wheels and transmission and an engine. Then try to create interfaces off of these abstractions. Never mind the abstraction is completely wrong from the beginning. Of course it all breaks. That's not OOP's failure. Composition and Inheritance are not mutually exclusive. They are extremely complimentary. The issue is, apparently, schools are no longer properly teaching the paradigms. A car "is a" vehicle. A truck "is a" vehicle. A vehicle "has a" motor. A vehicle "has a" transmission. A vehicle "has a" wheels. This well highlights the lines of abstraction and each associated interface to compliment each of those abstractions. Suddenly you're using both and the abstractions well identify the interfaces.
@Ghorda9
@Ghorda9 2 ай бұрын
@@justanothercomment416 or you could just use vectors and build the car out of different vectors(one for each component) and just use an index to link everything together.
@justanothercomment416
@justanothercomment416 2 ай бұрын
@@Ghorda9 Wild assumptions of the criteria and completely misses the mark of the comment's purpose.
@ivan.jeremic
@ivan.jeremic 3 ай бұрын
procedual is just the best and most natural, you don't care about anything you just write what you think, this is how our brain works.
@MichaelM-hj2mx
@MichaelM-hj2mx 3 ай бұрын
"Shit Oil" was great, I have used it in an email and am excited to work it into the global team meeting this week!
@21daysHs
@21daysHs 3 ай бұрын
PRIME you inspire me ❤
@leshommesdupilly
@leshommesdupilly 3 ай бұрын
Virgin OOP vs Virgin FP vs Chad chatGPT
@the_mastermage
@the_mastermage 3 ай бұрын
you could say ChadGPT
@shadeblackwolf1508
@shadeblackwolf1508 18 күн бұрын
The moment your private variable has a set, it's no longer private.
@_grigoryta
@_grigoryta 3 ай бұрын
19:15 Well, isn't programming about getting things right? Isn't good design about getting things right? Good thing about these principles is that: 1) you don't really need to adhere to them (except for maybe S and O) 2) Your extension methods or mixins or addable traits or what have you don't really impact the adherance, except you have to implement them for every object you have (if you have lots)
@jimhrelb2135
@jimhrelb2135 3 ай бұрын
In Rust, Liskov's principle is very close to constructive math/logic. It leaves to the programmer to implement mathematical niceties ("automatic proof" via type checking). The programmer needs to be wary of accidental: precondition strengthening, postcondition weakening, invariant weakening. Java's inheritance is much more opinionated. Basically each object has methods, which Java believes to cover the precondition, postcondition, invariant of that object under the context of the aggregation root (package or some outer class). It's only natural that under this model, the "simplest" implementation of a subtype of a class is the superclass. Thus, inheritance is implemented as the way we have now. Nowadays, we use programming languages so generally that the Java-like opinionated model becomes restricting more than helpful. About getters and setters, it's the "community" way to enforce the "history rule" under Liskov's principle. Nowadays, substructural typing is used to ensure the history rule (Rust's uniqueness type and the borrow checker). Under these lens, the author failed to amaze me on how OOP is mathematically more impressive than Rust's type system.
@insoft_uk
@insoft_uk 10 күн бұрын
OOP worst contribution was it weakened encapsulation, C language had perfect encapsulation until C with Classes now known as C++ destroyed the encapsulation. What OOP addresses is the flow direction of dependency, also created a nicer way to way function pointers worked.
@ArthurAndersen1234
@ArthurAndersen1234 3 ай бұрын
One amazing example of OOP done right is in "Dwarf Fortress". I recommend looking up how they did it!
Do NOT contribute to open source | Prime Reacts
36:40
ThePrimeTime
Рет қаралды 198 М.
Every programming language explained in 15 minutes | Prime Reacts
43:42
The best home workout !! 😱😱
00:27
Tibo InShape
Рет қаралды 7 МЛН
Super sport🤯
00:15
Lexa_Merin
Рет қаралды 9 МЛН
Prime Reacts: From C to C++ to Rust to Haskell
40:54
ThePrimeTime
Рет қаралды 272 М.
Teaching NextJS To Primeagen
1:19:51
Theo - t3․gg
Рет қаралды 223 М.
Programming Languages That Get You HIRED (Tier List)
9:59
Wojtek Dzierzkowski
Рет қаралды 1,6 М.
Is Stack OverFlow Evil? | Prime Reacts
38:13
ThePrimeTime
Рет қаралды 190 М.
The Only Database Abstraction You Need | Prime Reacts
21:42
ThePrimeTime
Рет қаралды 179 М.
Is OOP EVIL??? Reacting to my favorite dev Youtube video
54:49
Theo - t3․gg
Рет қаралды 124 М.
The BEST Way To Become A Software Engineer
14:45
ThePrimeTime
Рет қаралды 160 М.
The BEST Backend Language for You | Prime Reacts
32:57
ThePrimeTime
Рет қаралды 277 М.
Reacting to Controversial Opinions of Software Engineers
9:18
Fireship
Рет қаралды 2 МЛН
Приехала Большая Коробка от Anker! А Внутри...
20:09
РасПаковка ДваПаковка
Рет қаралды 74 М.
phone charge game #viral #tranding #new #reels
0:18
YODHA GAMING RAAS
Рет қаралды 12 МЛН
Эффект Карбонаро и бумажный телефон
1:01
История одного вокалиста
Рет қаралды 2,4 МЛН
На iPhone можно фоткать даже ночью😳
0:30
GStore Mobile
Рет қаралды 1,4 МЛН
#miniphone
0:18
Miniphone
Рет қаралды 3 МЛН