An example of this pattern with Dependency Injection would be great.
@MohammadMNajar5 жыл бұрын
Can we get a tutorial on Spring Boot and Kafka?
@apoorvwatsky5 жыл бұрын
jesus, what do you not know?
@Daedlues9 жыл бұрын
This video is amazing because 1.you supplied code 2.you tried a wrong approach first which made me think why using this design pattern is important and when to use it 3.learning by example and my diagram at one video 4.your teaching style is clear ( little face paced for a beginner like me ) thanks very much i really needed to learn patterns
@derekbanas9 жыл бұрын
+Daedlues Thank you for the nice compliments :) I'm glad it helped.
@topogigio106 жыл бұрын
@@derekbanas Sos un fenomeno Derek!
@todarfclips6 жыл бұрын
For someone who's not a beginner like me, all those points hold true but his speed is amazing. It's exactly the right pace.
@DatzAdam6 жыл бұрын
He also has magical powers by making a dog flies, amazing!
@Tomas9705065 жыл бұрын
For my perspective and point of view. This tutorial is bad because he shows a bad way to code and then does everything on top of it. For a begginer it might be hard to grasp what is where.
@alex26toma10 жыл бұрын
I like how you explain the bad practice code before presenting the design pattern. This way we know when to use it.
@derekbanas10 жыл бұрын
Alex Toma Thank you :)
@derekbanas11 жыл бұрын
You're very welcome :) Yes it takes a while to learn how to properly use patterns. Eventually programming stops being a set of commands and rules and instead becomes an art form in my opinion. With a bit of practice you'll soon start making master pieces
@derekbanas11 жыл бұрын
Here is my UML Tutorial Playlist kzbin.info/www/bejne/hZymaHuBqc6NeZI I also have a Object Oriented Design Tutorial in which I show how I solve problems kzbin.info/www/bejne/nHu6Z2iNpJx8fqs Both are on my KZbin channel. I hope you find them useful :)
@derekbanas11 жыл бұрын
Yes you can often use an Enum in this situation, but it will limit flexibility which is normally what you aim for with most design patterns
@brianlaudrupchannel9 жыл бұрын
I realise how bad Uni lectures are. If i finish my Degree its because of KZbin.
@derekbanas9 жыл бұрын
+billyblackburn87 I'm glad I could help :)
@rodrigobautista37689 жыл бұрын
I understand you men, I'm studying at ESCOM in México.
@todarfclips6 жыл бұрын
@@derekbanas Yeah seriously I'm using your videos right now to study for an exam, my teacher spent a 3 hour course on 3 design patterns but you went over one in 11 minutes and I understood better.
@ناصرالثقافه-ق5ز5 жыл бұрын
@@todarfclips vf
@ramiiii4 жыл бұрын
Have you finished your degree?
@derekbanas12 жыл бұрын
I'll cover that in future tutorials. The short answer is that it depends on the situation. The object oriented analysis tutorial is in the works. By the end I'll cover everything oop. Thanks for watching
@slidenerd9 жыл бұрын
i thought i would come revise my design patterns in java since its been quite some time and guess where I landed :D :D :D fantastic one mate,
@derekbanas9 жыл бұрын
slidenerd Thank you. Nice to see you :) Keep making those great videos!
@derekbanas11 жыл бұрын
Here are all my UML tutorials and codes in one place newthinktank. com/videos/uml-video-tutorial/ I hope you like it :)
@heradsinn5 жыл бұрын
Great video and great series. Two questions: 1. Would you care to elaborate about 2:49, "Avoid Interfaces that Just Force Action"? 2. What is the literature on design patterns in general? Perhaps what GoF published back in the days, or maybe there are newer and better books about the patterns? Hopefully you still read comments 7 years later ;)
@_timestamp3 жыл бұрын
Nope, he didn't read this comment
@richardrisner9213 жыл бұрын
1. That means you should not add an interface which merely forces yourself to manually determine what every single animal will need to do with flying capabilities. An interface might be more appropriate for an action which would have a distinct implementation for each class.
@derekbanas12 жыл бұрын
It is in the works. It will come out immediately after the design patterns tutorial. Then I'll cover oop analysis and UML. The refactoring will follow that
@derekbanas12 жыл бұрын
Bog vas blagoslovi, kot dobro. Hvala
@vikashverma94 жыл бұрын
Where can I get PPT used in this video?
@derekbanas12 жыл бұрын
That topic is both very simple and also very complicated. First off, you couldn't even participate in high frequency trading because those computers receive and act on information in less than 10 milliseconds. They just look for patterns, price discrepancies and trading errors and try to take advantage of them. Ex. If the price of IBM went up 2 cents it more than likely will go up another 1 cent so, buy it at 197.16 and then sell it at 197.17. Stuff like that
@derekbanas12 жыл бұрын
It is awesome to be able to help people all over the world :) Thank you for telling me you are watching!
@derekbanas12 жыл бұрын
I included the classes that implement flys on the same page as I created the flys interface. You'll see it if you look over the code on my website. Sorry about the confusion. I normally don't do that in tutorials
@jrumiak8 жыл бұрын
At 3:12 you state that super class change shouldn't affect subclasses but later you left flyingType uninitialised forcing every subclass cunstructor to set it's value. Shouldn't you just provide a default?
@matthewhartz92357 жыл бұрын
Yeah, i think this is a bad aspect of the pattern. If you, as a developer, were unaware that you need to initialize this, you won't get a compile time error. Or, if you provided a default, at least in this example, you might have flying dogs by accident in production.
@abhi4unme20027 жыл бұрын
Instead of having variable initialized by default, we must have explicit constructor for initializing all the strategy variables in the class, all such classes should not have default constructor for them , which has variables of interfaces in them.
@veganaiZe6 жыл бұрын
I think that the Strategy Pattern has less to do with Super vs. Sub-classing and more to do with being able to change/substitute algorithms at runtime. In other words: It allows you to avoid hard-coding one particular algorithm (or implementing several and using conditionals to select between them) at compile-time and, instead, dynamically select the most appropriate at run-time. The Strategy Pattern basically lets you implement behavior (ie. an interface), where ever you find it most appropriate, and then it allows you to easily change that behavior. So for instance you can implement an I/O interface, which is initially text-only (all over), and then dynamically change it to a GUI interface; without re-compiling and without duplicating lots of code.
@derekbanas12 жыл бұрын
I've been thinking about covering Extreme / Agile programming techniques. I'm just not sure if there is any audience for that topic? I don't particularly care about views, but I don't want to alienate every viewer. I'll probably do a overview video on the subject and see how people like it. I also want to cover Discrete mathematics because the Khan academy never covered it and it works perfectly with understanding programming.
@RVCata10 жыл бұрын
Well...this playlist has helped me better understand design patterns than 2 years of college. You deserve many beers. Many many beers :D.
@derekbanas10 жыл бұрын
Thank you very much :) I'm happy that I could help.
@derekbanas12 жыл бұрын
You're welcome :) I can't wait to cover C++ and the differences that occur with these patterns. They are very similar as you said, but there are slight differences. The same is true with C#. I'll get to it as soon as possible. i promise to cover C and C++ as completely as I have done with Java
@jotaene76410 жыл бұрын
You have the teaching gift! God Bless you even more than you have been till now! Thank's for the charity with the humanity by giving away all that high quality high valuable knowledge of yours!
@derekbanas10 жыл бұрын
Thank you for the very kind message :) May God bless you as well.
@ناصرالثقافه-ق5ز5 жыл бұрын
@@derekbanas in Flow
@derekbanas11 жыл бұрын
I do use setFlyingAbility in the code sparky.setFlyingAbility(new ItFlys()) Yes you could set flyingType as private. I didn't do that only because I wanted to show 2 ways to set that value. Sorry about the confusion
@TheAdithya98 жыл бұрын
Extremely helpful. Really well put, well designed and such a good example! At it's most basic level. Good editing too. I'm sure it must be hard to squeeze it all under 15 minutes.
@derekbanas8 жыл бұрын
Thank you for the compliments :) I'm glad you liked it
@mostinho74 жыл бұрын
Done thanks Todo move notes to onenote 9:30 UML diagram It’s a pattern to favor composition over inheritance. Use case: animal superclass, some subclasses fly and some dont. Instead of animal superclass having a fly method (where not all subclasses can fly) and subclasses overriding it to fly/not fly, and instead of having a flies interface that some subclasses implement and some dont (both these solutions are bad and duplicate the flying code or the non flying code), we can have a flies interface (but not have animals implement it directly). Instead we have “ability objects” that implement the Fly interface like ItFlys: Fly or CantFly:Fly. And animal superclass has instance variable (composition) of type Fly (the type of the interface) and subclasses set that instance variable to ItFlys or CantFly polymorphically. We can have many different types of flying, classes that implement the Fly interface like ItFlys, CantFly, FlyWings, FlySuperFast etc
@abbos-alimirkhanov11410 жыл бұрын
Hi Derek Banas! It was a bit difficult for me to understand this line of code 'public Flys flyingType;' on 5:31th minute. As I understand it is field variable, and first we have to declare visibility which is PUBLIC then type, which should be some type like integer, String.. or void. After that goes name which is Flys, however in your case it is first visibility which is PUBLIC, then name Flys and then type FLYINGTYPE (I still can't understand what type is it) This line of code is breaking my logic))) However, I have not read about COUPLING which you mentioned in video.
@derekbanas10 жыл бұрын
Abbos-Ali Mirkhanov By using composition to store flyingType I'm able to change capabilities at run time. We can then define the flyingType by passing it to setFlyingAbility and then tryToFly automatically executes the proper code without having to define anything at the beginning.
@fakkkkkk10 жыл бұрын
Flys is not name, its type in this case. There is an interface Flys, and the variable flyingType is of this interface's type - Flys. The name of the field variable is flyingType..
@KingMartinelli9 жыл бұрын
Flys is actually the type of the object and FlyingType is the name of the object. You said correctly, that it's a field variable, means there's nothing declared (no memory has been allocated). The point of this is, to define every class that extends from animal whether it can fly or not. Abbos-Ali Mirkhanov you should focus more on your programming understanding before you pay attention to design patterns mate
@voltaireestrada73847 жыл бұрын
shouldnt flyingType be private? maybe that's what he meant?
@nitin.cherian11 жыл бұрын
Hi Derek. One of the best tutorials I have ever seen. I would like to point out the things I liked most about the tutorials. 1. Your voice. It just glues me to the tutorial. 2. The tutorial is short, crisp and awesome. 3. Even your comments and replies here is constructive and clear. 4. The code is well documented and very understandable. Thank you so much. Hats off!!
@1yanivyaron19 жыл бұрын
Hi Derek, Thanks a lot for your channel, it helped me a lot in my job interviewing process. I owe you one ;-)
@derekbanas12 жыл бұрын
I know I've simplified it and in doing so assumed that viewers would understand that there normally would be more than 2 choices. I do that because I'm planning to provide concrete examples in the future on when and how to use these patterns. I hope that makes sense
@ronenfe8 жыл бұрын
I think the better way to implement it, is to create another subclass FlyingAnimal that inherits from Animal and let bird inherit from it instead of from animal.
@Alex-ht1oq7 жыл бұрын
ronenfe Can't have multiple inheritance in Java. Sorry lol .
@maximembabele7 жыл бұрын
ronenfe said "instead of Animal". so it is still single inheritance
@paulrybitskyi17377 жыл бұрын
On the Derek's "When to use strategy pattern" slide, there is a point called "When you need to use several behavior dynamically". Dynamically means at run-time. So, while you can create another subclass FlyingAnimal that inherits from Animal and let the bird inherit from it and dog inherit from Animal class, what happens when your dog, by some magical way, obtained wings and now can fly? If we went with your proposed way of doing things, then there is pretty much no way of telling the class that the dog can fly now. If we went with the strategy pattern as in the Derek's video, we could easily change the flying ability by passing another implementation. Although I admit that the example is a bit silly, the pattern definitely finds its uses in modern development.
@derekbanas11 жыл бұрын
I'm very happy that so many people around the world seem to be able to understand me :) the funny thing is that in my country I was often used to speak with people from foreign countries. I could always understand them as well. I'm very happy to be able to help
@xpopcornx17479 жыл бұрын
Seems like bad code when Dog is forced to set flying ability, a behaviour it shouldn't have.
@vnie19889 жыл бұрын
+XPopCornX I was thinking the same thing. It seems to me that creating a FlyingType class and slotting it in between Bird and Animal in the inheritance chain would be better. Dog would never have to know about it.
@popuzin8 жыл бұрын
+vnie1988 but then dog can't fly even if it takes jet pack =) or if dog will mutate in some crazy flying doggybird )).
@SyndaKai8 жыл бұрын
+XPopCornX You could easily set the default flyingAbility to CantFlys to avoid this problem
8 жыл бұрын
+XPopCornX I was thinking that maybe the reason it's called strategy pattern is because you're going to define the different strategies in order to implement (achieve) the method. If I implement a Flying interface I guess a more understandable example would be that in the noFly strategy, the animal boards a plane. So in that way, the animal can achieve or implement the interface, but using a different strategy. And there are many other strategies that could be thought of to implement an interface. The real world scenario that I'm thinking about with what I learned here is: databases. There are databases that write to a file (like sqlite), but other databases behave differently. So maybe a strategy pattern would be an interface to store data. We want the same thing (to store data), but the strategies are different.
@l_u_c_k_y_78 жыл бұрын
hahhahaha
@derekbanas11 жыл бұрын
Anytime you need to restrict a class you would need an abstract class over an interface. An interface really doesn't have any rules. So for example let's say you had a class that represented a printer. You know you'll have to stop printing if there is no more paper, or ink. That will always be the case no matter which printer you use. So an abstract class would provide those limits. Does that help?
@StingJia9 жыл бұрын
Following the whole tutorial and type each line code manually. If anyone need the the source code, I upload them to: github.com/jiapengjun/designPatterns
@TigasFMS9 жыл бұрын
Sting Jia He has it in his website.
@sermilion_audio9 жыл бұрын
+Sting Jia cool, thanks a lot)
@derekbanas11 жыл бұрын
Yes it is halfway between a regular class and an interface
@BogdanBadulescuBadulescu9 жыл бұрын
it's : Flies ..
@derekbanas11 жыл бұрын
Thank you very much :) I do my best to constantly improve. Sometimes in doing so I make a bad video now and then, but I think it is worth it. I plan to eventually make a tablet app for every tutorial series that will provide a quiz and animations to improve the learning process. I have started doing that a bit in recent tutorials. Most of the money I make from these videos goes back into making better videos. Thanks for the nice comment!
@derekbanas11 жыл бұрын
Sorry if that was confusing. I tried to make a very simple example for this pattern. It probably wasn't the best
@derekbanas11 жыл бұрын
Thank you for the kind words :) You have no idea how much I enjoy doing this. It is great to be able to help people!
@saptarshimitra12679 жыл бұрын
I have worked as a software engineer for 8 years and then went back to school & started doing Machine Learning. But when I wanted to revise my old stuff , your videos were the best option. Thanks for the effort and yes! UML tutorial will be great as well.
@derekbanas9 жыл бұрын
+Saptarshi Mitra Thank you for the very nice compliment :) Here is my UML tutorial kzbin.info/www/bejne/hZymaHuBqc6NeZI
@derekbanas11 жыл бұрын
Thank you :) I do my best to make the videos fast and compact. I'm glad you liked it
@TheRunner9411 жыл бұрын
These are by far the most helpful tutorials on KZbin for programmers. I am a first year computer science student and I have been spending hours in the library trying fully grasp structures of programs and object oriented programming. Great videos!
@derekbanas11 жыл бұрын
Thank you :) I did my best to cover just about everything in one video. I'm always very appreciative of the kind compliments!
@derekbanas11 жыл бұрын
I should have explained myself better in the tutorial. I now realize that it can sometimes be confusing when I show multiple ways to do the same thing in a tutorial. I'm very happy that you enjoy the videos :)
@derekbanas11 жыл бұрын
I have made a bunch of stock analysis tools and many patterns are involved. Yes the observer is very common. Sorry, but it depends on your program
@derekbanas11 жыл бұрын
flyingType should be private I agree. I didn't call setFlyingAbility in a constructor because I was trying to be as flexible as possible. Well sort of I could have done other things to add flexibility in hindsight. Sometimes while focusing on the pattern I tend to disregard everything because I have this belief in my head that if I focus on optimization that it will confuse people. I hope that makes sense
@derekbanas11 жыл бұрын
Thank you :) Yes, I tend to make videos for intermediate programmers. Most everyone else aims at beginners so I like to be different.
@derekbanas12 жыл бұрын
You're very welcome :) Thank you for watching
@derekbanas11 жыл бұрын
You're very welcome :) Yes you can create an instance directly in the methods attribute. It is a little odd I know
@derekbanas12 жыл бұрын
It doesn't care that it is an interface. That is why the pattern is so great. The interface just does its job by allowing functionality to change dynamically while not effecting the super class. It may take some time to wrap your head around design patterns, but when you do you'll be able to write great code. It took me awhile as well
@derekbanas11 жыл бұрын
Yes that is exactly it. Also if we can't think of something as a real object then it shouldn't be instantiated.
@derekbanas11 жыл бұрын
You would use it with classes that are very similar. What you referred to is the skill one must develop after learning about patterns. Knowing when not to use a pattern is just as important as learning when to use them. I cover more on that in the refactoring tutorial.
@derekbanas11 жыл бұрын
Composition is a major part of most of the design patterns, so I can't really assign that just to the strategy pattern. Design patterns in general try to add flexibility through avoiding high coupling in many ways that are quite similar. Inheritance should be avoided if at all possible, but above all else understandable code is the goal
@derekbanas11 жыл бұрын
Yes a java enum is often well suited for that.
@MoRamzan11 жыл бұрын
I don't know enough to comment on C++/C#, but for PHP they are extremely useful. One of the major reasons that your tutorials are so good are that you obviously go to a lot of trouble thinking/preparing for them beforehand and they are presented very well - which means that the subjects/methodologies you are trying to explain are easily understood. Wish I'd come across your channel earlier!! Thanks again!! :-)
@derekbanas11 жыл бұрын
Hi Vishal, Thank you :) I'm glad you found it useful. I record with Camtasia 2 and I edit with iMovie.
@derekbanas12 жыл бұрын
I think the answer is that you wouldn't want to ever have code from flys call for any other methods. You could do most anything in regards to class accessing using java reflection. The whole idea of using composition is to lower coupling and make the code more understandable and extensible. If you start using code that does something out of the ordinary then it would make the code less understandable. Can you give me an example of why you would need to do this?
@derekbanas11 жыл бұрын
Thank you for taking the time to watch and to write a nice comment :) I appreciate that
@derekbanas12 жыл бұрын
You're very welcome :) If it helps make your code more understandable then do it. There is a misconception that there is only one way to use each pattern. Even the GOF book states that it is but a guide and the patterns should be adjusted based on need. I hope that helps
@Jetisertes3 жыл бұрын
I'm a junior dev, and I picked up a lot of intuition along my programming years. I haven't heard of this pattern before, and I realized that I just wrote a piece of code yesterday that follows this design pattern after not being satisfied with a more traditional polymorphic implementation. Nice. Thank you for your work as a KZbin educator, I really appreciate your videos. Cheers.
@derekbanas11 жыл бұрын
Yes you are correct. I wish I could have come up with a better example, but I wanted to keep everything as simple as possible
@derekbanas12 жыл бұрын
For every case we can build a class that performs a certain action instead. You can see an example of this in my Abstract Factory tutorial. I define classes for all the potential weapons and engines for my space ship. We have a class implement an interface and then execute the right version of that method based off of normal inheritance. Does that make sense?
@derekbanas12 жыл бұрын
Thank you :) I did my best to make it understandable by looking at it from a bunch of angles.I'm glad you liked it
@derekbanas11 жыл бұрын
Yes I should have marked it as private. Sorry about that. I made the UML tutorial. It's on my KZbin channel. Thank you for the kind words. I'm always here to teach whenever you are in need :)
@derekbanas11 жыл бұрын
Thank you very much :) I used to work as a software architect and part of my job was to train new hires and answer their questions. I'm basically doing here what I did with trainees. I'm not a professor
@sakhawathossen21042 жыл бұрын
it's 2022, Aug 1, I am watching this almost 10 years later . And it makes so much sanse. Thank you a lot for this video man. A true gem indeed.
@derekbanas2 жыл бұрын
Thank you :) I’m happy it is still helping people
@derekbanas11 жыл бұрын
Thank you very much :) In the refactoring tutorial I spend a good amount of time answering design pattern challenge questions. That was a lot of fun
@maurobilotti11 жыл бұрын
Derek, THANK YOU VERY MUCH!!... you have made an incredible job. The most important fact in my case, is your clarity to talk, i'm from argentina and as you know, this part of the world talks in spanish. I think that i have quite good english, but i saw a lot of tutorials where you barely understand what they are saying... however, your tutorials are excellent in this point. Congrats to you! Keep doing this job... all the developers in whole world are grateful with you.
@derekbanas11 жыл бұрын
Yes that should work. You may want to give it a different descriptive name other than fly though
@derekbanas11 жыл бұрын
It is very nice for me to be able to reach people all over the world! I'm very happy that you're enjoying the videos :)
@derekbanas11 жыл бұрын
Thank you for telling me you like them and that they help PHP programmers. I always wondered how well they would translate for languages other then java, C# and C++. Im very happy that they've helped
@derekbanas12 жыл бұрын
You're very welcome :) If you take a look at my OOD tutorials and the refactoring one you'll see that my number one goal is to write very easy to understand code. Very often we have to give up on some capabilities if we want to achieve that goal.
@billytomlinson459011 жыл бұрын
Just want to say thank you soooo much for creating and uploading these amazing FREE tutorial videos. They are the best training vids I have probably seen ...paid or unpaid. I have been a Microsoft developer for over 15 years but this is the 1st time that I have truly understood patterns and their usage. After watching the patterns vids it was like an Epiphany...everything just became clear. I'd spent 10 years in the foggy wilderness and now I can see the light !!..Many, many Thanks !!
@derekbanas12 жыл бұрын
Thank you :) I have a Design Pattern, Java, etc. playlist on my KZbin channel. Sorry, if everything is a bit confusing because I have so many videos. I try to aim for 10 to 15 minute videos. I feel that that is the sweet spot for completely covering topics. I know I'm the only person making videos that long. Actually my videos start out at 30 minutes before editing. I'm working to improve them all of the time. Thank you for your insight :)
@derekbanas12 жыл бұрын
You're very welcome :) I did my best to make the gof book make more sense
@derekbanas12 жыл бұрын
Don't worry it is easy to get confused by design patterns. It is just a new way of thinking about programming. It may not seem like it now, but after you understand these oop concepts, it becomes very easy to make very complicated systems
@derekbanas11 жыл бұрын
Thank you very much :) I constantly do my best to improve them. I'm very happy that you enjoy them
@nicolasap8610 жыл бұрын
I wanted to leave a quick note before I forget. Thank you so much Derek. Right now I'm in a Software Design class in which we have to learn these really tricky patterns. You do an absolute amazing job at explaining concepts(literally the best tutorials I've ever seen on the web for programming) I hope you continue to do this work and that you'll find a way to spin it into something even bigger than youtube videos(if you haven't already)
@derekbanas10 жыл бұрын
nicolasap86 Thank you :) I'm very happy that I could help with patterns. Many more videos are coming and they will always be free.
@derekbanas12 жыл бұрын
Thank you very much :) I appreciate that. I planned on introducing UML along with this tutorial. The only problem is that I could easily make 20 videos on the subject. I can't guarantee it would be finished. Thank you for telling me there is interest in that tutorial though
@derekbanas11 жыл бұрын
Thank you very much :) I plan on doing a performance testing tutorial. I do that to a certain extent with the refactoring and algorithm tutorials. I talk about Big O notation and such
@derekbanas11 жыл бұрын
Sorry I go overboard every once in a while. Over the years you guys out there have taught me to always be on my toes and to not just flippantly provide answers to questions :) I'll see what I can do about covering the different unix shell versions and commands. I'd like to do it in an interesting way, which I can't think of at the moment
@derekbanas11 жыл бұрын
It should be an interface because it wouldn't make sense to have a Flys object. Does that make sense?
@derekbanas11 жыл бұрын
Thank you :) Yes programming to an interface is most always the best decision. I only use abstract classes when I must implement some nonabstract method
@Vendettaaaa66611 жыл бұрын
to summarize, Use strategy pattern(Composition), when you wanna have behaviours that change DYNAMICALLY. Use Inheritance when the behaviour changes STATICALLY. Right?
@derekbanas12 жыл бұрын
All methods should be marked as private. I don't always do that in tutorials, but instead normally leave them as default which is very much like private. Which methods are you referring to specifically?
@derekbanas11 жыл бұрын
Thank you very much :) I already have the UML tutorial finished. I hope you like it
@derekbanas12 жыл бұрын
Sorry, but I haven't looked at BCEL for many years and I'm not aware of the background of this question. It sounds like a homework problem?
@SpiritsofCreativity11 жыл бұрын
Wow, I had totally skipped these tutorials for some reason when your first created them,. Now I just watch the first design pattern and I am just completly amazed! (why did I skip these videos!!)
@derekbanas11 жыл бұрын
Yes you can implement this in C++. You create a java like interface with a class that contains only virtual methods. Here is some information on abstract classes in Python python. org/dev/peps/pep-3119/
@chiligarden9 жыл бұрын
This is the easiest tutorial about design pattern that I have viewed. I can't wait to finish viewing/learning from your tutorials.
@derekbanas9 жыл бұрын
+chiligarden Great I'm happy that it helped :)
@jubinjuneja313511 жыл бұрын
Its simple straight and clear. I have just listen only a few of them. I am in progress of listening more of deisgn principles session. Will recommend everyone who wants to learn design pattern... Thanks Derek
@derekbanas11 жыл бұрын
Thank you for the kind message :)
@derekbanas11 жыл бұрын
Thank you very much :) That is a much appreciated compliment. I do my best to present these topics in an interesting way
@derekbanas12 жыл бұрын
Thank you :) I have a UML tutorial and I'm going to revisit these patterns again in my code refactoring tutorials that will start next week.
@derekbanas11 жыл бұрын
Thank you very much :) It is really amazing that techniques developed decades ago are still not used in many software companies?
@derekbanas11 жыл бұрын
Thank you very much for taking your time to show your appreciation :) You have no idea how much I appreciate that! I'm very happy to have been of help
@derekbanas11 жыл бұрын
Thank you very much :) It is very nice to be able to help people understand this stuff. Many more videos are coming.
@derekbanas11 жыл бұрын
You're very welcome :) it is very gratifying to be able to help people all over the world
@derekbanas11 жыл бұрын
Thank you very much :) I work hard to make the best tutorials I can. I'm glad you like them
@MrRaam03011 жыл бұрын
Amazing tutorial, there is lot of stuff cramped in nicely into this short video, felt like completed 50 pages of reading in ease ... Thank u..
@derekbanas11 жыл бұрын
I was just focusing on the pattern and it would be best to set it to private in this situation
@spaarks8411 жыл бұрын
Thanks for your great post Derek. I really enjoyed your direct example of the Strategy Pattern emphasizing how you have decoupled any dependence from previous videos. Comments detracting from the ultimate goal of discussing the pattern in general, are no doubt valuable in specific business cases but the attention to detail about what is important to the pattern is what I find most valuable in this videos. For those who already appreciate the existence of individual business constraints within a given implementation, you're intentional quality of skipping particular details about , for example, how private or final a method should or should not be be is something in which, I ,for one, find much value. Your willingness to politely discuss via comments with others how your vagueness on certain points might be more invaluably clarified in particular situations is a cherry on top. Please hit me up if you want to discuss cleaning up your content a bit and syndicating for a good cause. I'm willing to pith in on other people's ventures and I am always looking for good coders to pitch in on mine. Thanks again, Anthony Ruffino aruffino84@gmail.com 815-301-7606
@derekbanas11 жыл бұрын
You definitely understand my way of thinking in these videos. I always thought it was better to avoid covering the details at times if it gets in the way of the topic at hand. I'm glad you see that because most people don't. I provide everything for free, so if you want to embed the videos, or use the code from my site in any way feel free to do that. I do all of this purely to help people in any way that I can.