📚 Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time.
@footballCartoon912 жыл бұрын
I have a question.. @13:14 Why we did not use /* Android* android=new Android(); */ instead or maybe /*Android android; android.TakeASelfie(); */
@EvilSapphireR2 жыл бұрын
@@footballCartoon91 Because that is the entire point of abstraction. The client code doesn't need to know anything about the child classes (implementations of the interface), not even the names of the child class. You can visualize this as the actual code of the Iphone class methods being implemented in a already compiled library that has simply been shipped to you , and all you've been told is you can get a smartphone from this library by calling a API like [Smartphone *GetSmartphone()]. Then you, as the user (client developer) of library, to take a selfie with a smartphone would simply write : Smartphone *s1= GetSmartPhone(); s1->TakeASelfie(); If the library now changes to a Android smartphone library, the actual TakeASelfie() method code would now be different since this is now an android smartphone and a different library, but you, the client developer, don't need to change the code one bit! That's the beauty of abstraction.
@martonkos57753 жыл бұрын
As a professional, this is a really good explanation and documentation. I know that how hard it is to teach how to code especially in C++, and you doing it very well!. Keep it up!😁
@CodeBeauty3 жыл бұрын
You're very welcome! Thank you! 🤗🤗🤗
@Duknh.programmer Жыл бұрын
She really made me understand the concepts very easily, much better than my college textbooks and teachers.
@mohamedabdibarre70943 жыл бұрын
The two unique qualities that attracted me to subscribing to this channel are 1. Real world examples (Saldina you are a unique instructor). 2. GUI programming in c++ (this channel has so far published a few - about 4 videos on c++ gui programming - I found them helpful.
@monstergamingiraq79273 жыл бұрын
you the one who made me love coding and success in my college..Thank you..please dont stop
@ZeroCool22113 жыл бұрын
Your teaching skills are actually better than 90% of Udemy teachers. Accept my greetings from Palestine.. hopefully you do some tutorials about preprocessor (pragma once, define,...etc)
@CodeBeauty3 жыл бұрын
You're very welcome! Thank you and I'm sending many greetings! 🤗🤗🤗
@psr1692 жыл бұрын
There is internet in Palestine?
@ZeroCool22112 жыл бұрын
@@psr169 Yes there is
@psr1692 жыл бұрын
@@ZeroCool2211 lol i thought israel bombed the region of Palestine
@ZeroCool22112 жыл бұрын
@@psr169 lol
@ashrafmugalli95103 жыл бұрын
Saldina ! you have literally helped me learn c++ in a matter of days! keep it up I'm sure many others are benefitting from this as much as i am!
@matrixtoogood56013 жыл бұрын
My takeaways:- 1. Abstract classes are an abstraction around base classes which can be used to enforce certain functionality in all base classes. 2. Abstract classes can be instantiated using pointers only and not by creating objects of the abstract class. 3. Abstract class pointers can point to memory addresses of instances of any of its base class 4. Pure virtual functions can be used to enforce certain functionality in all base classes of an abstract class. 5. Pure virtual functions will not have an implementation in the abstract class definitions, but will use a pure specifier (= 0) 6. Virtual functions can have an implementation in the abstract class (think of it like the default functionality if none of the base classes have an implementation of that function)
@KyleGW2 жыл бұрын
After failing 3 technical interviews for embedded sw because I failed to explain the definition of abstraction, I FINALLY can explain what is abstraction and the other 3 pillars. THANK YOU!
@CodeBeauty2 жыл бұрын
I'm glad to hear that! 🥰
@wesanderson76663 жыл бұрын
Wow! Amazing instructor! I'm retired with multiple degrees in engineering and statistics but Saldina is one of the best I have seen. It is a great and rare skill to be able to break down complex topics for the learner. Excellent example and presented extremely well.
@mackenziejackson28882 жыл бұрын
As many have stated, you really helped me understand difficult concepts that my past instructors have failed to explain correctly. Thank you so much for taking the time to do these videos, they prevented me from losing my sanity when I was hanging on by a thread. I am going through all of your OOP videos and coding along with you and I am learning so much!
@EvilSapphireR2 жыл бұрын
This is, hands down, the best tutorial that I've seen that lucidly describes the abstraction standard C++ was invented for. Only thing that in my opinion that would improve this explanation is to briefly mention how the definition of the Android/IPhone classes can be in a completely separate library that the client code only needs to link to and get a pointer to the interface of the object from an exported API without knowing anything about the library code. This would make the process of abstraction completely clear to a newcomer who still may struggle with this example since the implementation of the class methods are inside the same page (translation unit) as the client code that invokes the methods. Seriously, amazing job, and thank you!
@AshwinKumar-kc7ly3 жыл бұрын
All the 7 videos on OOP are just amazing - Thanks Saldina! You are great!
@marisaloac14563 жыл бұрын
Thank you for making these videos. You teach better than my professors and I was stuck on so many concepts before I came across your channel :) was becoming discouraged. Please continue making more c++ videos and ill keep watching :)
@jiaweiguo39873 жыл бұрын
You are the best teacher on KZbin good job Saldina Greetings from Spain. saludos desde España
@klevismema49983 жыл бұрын
I don't usually comment but i have to say that you have helped me a lot , thanks to you 🙏
@CodeBeauty3 жыл бұрын
I appreciate you comment very much, and I'm happy to help! 🤗☺️🧡
@klevismema49983 жыл бұрын
@@CodeBeauty in 23 of this month i have an exam in c++ i will use the knowledge thag i got from your vids and practicing
@subarux40542 жыл бұрын
I just stumbled upon your channel and wow!! I am so amazed at how you teach the topics at hand. It clicked in way it hasn't before. I love how you simplify the concepts by using relatively easy to understand scenarios like the coffee example.
@Anesu9822 күн бұрын
wow you taught this waaaaaay better than many videos i have been seeing...thank you so much..its sooo clear keep it up
@nitin60962 жыл бұрын
i spent like half of the day to understand abstraction and to find a real example of abstraction and now here i am fully aware of it with the help of such an awesome teacher
@marlouantenero1811 Жыл бұрын
After watching a lot of videos about the explanation of this abstraction thing, I finally found one that is understandable , Thank you very much
@mahdiakhi6874 Жыл бұрын
Thanks for the video it was really useful. In general, abstraction is about two things: 1- Hide the detail of implementation. 2- Generalize by identifing common essense. here in your example you folllowed these two goals.
@GalaxyCookies76 Жыл бұрын
The complex concept was beautifully explained
@jasnarmstrng Жыл бұрын
Amazing - the power of abstraction and your intuitive and clear explanation of it. Thanks!
@zombiehellmonkeygaming19563 жыл бұрын
Thank you for the great explanation! I've learned these before, but I actually learn it BETTER from your videos.
@CodeBeauty3 жыл бұрын
🤗🧡🧡
@arpitkhandelwal60503 жыл бұрын
i just saw your video OOP using cpp in free code camp channel.. let me tell you , you are amazing. this tutorial was up to the point and very easy to understand. SUBSCRIBED you for more.
@kumarsaurav1818Ай бұрын
wonderful explanation with great concept clarity
@jojo_v53953 жыл бұрын
come from virtual fonction and abstract function. So grateful for what you're doing. I would say this is the most outstanding explanation video for abstract functions I've ever seen. this is a good example of using coding as a weapon to help more people. That's my purpose too. So Thank you so much
@cosminmoldovan34443 жыл бұрын
As a middle software ingineer I can say your tutorials are very useful and helped me to understand oop principles better. You have a new subscriber and good luck in everything you do !
@CodeBeauty3 жыл бұрын
🤗❤️
@R_FriUI Жыл бұрын
Great tutorials, I have watched your Pointers playlist and now am working through the OOP playlist, I am taking a college course on video game development and watch your videos to reinforce what I have learned in my classes. Thanks a lot!
@mahabooblinux9 ай бұрын
none of youtubers are capable of teaching like you ,wow what a example
@kailas8132 жыл бұрын
It's a Very Crystal Clear explanation of Abstract concepts. Thanks so much. Completing each of your sessions is creating by default interest to see your next topics. 🙂
@DeepakVerma-dq5nw3 жыл бұрын
Great Example, watched several videos but here all my doubts got clear!!
@pushpendrapal649 ай бұрын
best abstraction video I got until now
@pedrolobo98353 жыл бұрын
It was the best explanation of abstraction I have ever heard! I have two questions: 1- Why did you choose dark mode in your IDE this time? 2- Why didn't you delete the s1 pointer?
@mishaerementchouk3 жыл бұрын
I guess the dark theme was often requested, otherwise people apparently didn’t trust that this is the real deal. The missed delete however is not a good practice. This should be like the second nature: wrote new, write delete.
@zloziecode Жыл бұрын
The information provided was incredibly enlightening and skillfully delivered. I gained a wealth of knowledge and found your work to be truly motivating. Your efforts in producing such valuable material are greatly appreciated!
@alikhaled78452 жыл бұрын
I got here so far, and I have learned so much in this playlist than I did in college. I thank you so much and you have saved my life. I wanted to ask if you can make a video (How to start a school project) Like I am getting a project from Data structure and they are making us fill in lines in the code between ////todo//// so I am having trouble trying to find out how to know which code to put or how to trace the code or how to troubleshoot or debug. This project is called (Shopping Cart Project) or (Booklist project) If you want me to send you one of a sample, I can send you the project.
@ammadamir6597 Жыл бұрын
What an amazing video, everything is now crystal clear. Thank You🙏👏👏
@CodeBeauty Жыл бұрын
😇💙
@trax.w75e4 Жыл бұрын
She is explaining the code, while I'm falling in love.
@moizsultan54403 жыл бұрын
finally, you answered my requests about making oop videos. thanks a lot saldina i really appreciate it and am looking forward to get more
@VoidloniXaarii5 ай бұрын
What beautiful philosophical arguments... Thank you 🎉
@joseloeza3713 жыл бұрын
Happy holidays pretty and a wonderful new year. Excellent video.
@Ghisisan_3 жыл бұрын
Very good and practical explanation. I had OOP courses during university but this part was always a bit "abstract" for me. I do not do advanced programming on my job - just scripting from time to time. But hey, this now makes sense! Thanks!
@himanshurajpal78423 жыл бұрын
Saldina is back🥰🥰🥰I love your way, sister!!
@CodeBeauty3 жыл бұрын
Every Wednesday around this time! 🥰🥰💗💗
@himanshurajpal78423 жыл бұрын
@@CodeBeauty your free code camp video of C++ OOP introduce you to me, from that video, I am big fan of yours, I am also teacher of maths, (teaching simultaneously student) , I learned a lot from your style of teaching, ❤️and I don't wanna miss any video from you... , I assume you as my elder sister , and learn from you ..... ❤️Thankew.. 😉😉😉
@CodeBeauty3 жыл бұрын
@@himanshurajpal7842 Thank you so much. This is a very nice comment and you seem like a very genuine person! 🙏💙
@himanshurajpal78423 жыл бұрын
@@CodeBeauty thankew didi( in India, we call elder sister as "didi" a sign of respect) I also connected you on LinkedIn. I hope my career will be bright under your guidance and I will achieve my aim to get selected in Product based companies under your supervision.❤️😉
@سراجمصطفىمحمد4 ай бұрын
You explain the ideas very well .... I hope you to continue ... please can you make a playlist explaining a course about ICPC
@chrisflyvr3 жыл бұрын
Extremely helpful tutorial. Thank You!
@CodeBeauty3 жыл бұрын
you're welcome ☺️😄
@munnawmv4 ай бұрын
What an explanation ! Please keep it up. 🫡🫡🫡 Love from Bangladesh. 🥰
@josephpeter58245 ай бұрын
Thanks for your great course!
@naffiahanger93163 жыл бұрын
Precise and informative, best explanation of Abstraction in C++.
@pritampatil41633 жыл бұрын
Extremly Helpful Tutorial . Thank you ❣❣❣❣
@LearnEnglishMM Жыл бұрын
Thank you so much. It’s much clearer.
@amitgaikwad73543 ай бұрын
was struggling a lot to understand the concept of inheritance and abstraction but not any more :) .explained in a quite simple way. keep it up
@CodeBeauty3 ай бұрын
if you liked it you might want to check my Practical Programming Course at www.codebeautyacademy.com It is based on C# instead of C++ but it is full of practical knowledge that is applicable to any programming language. We are building real desktop application and you will be learning alongside other students, with me as your personal tutor. With this you will also gain access to exclusive Discord community. I'll be happy to have you there. :)
@abdelfetahissellal52653 жыл бұрын
Thanks for you Time, and happy ramadan for all Muslims
@khalilislam50883 жыл бұрын
Superb!! Your lectures helped me to understand OOP. Break a leg for you
@dhanlad96493 жыл бұрын
abstraction and abstract class are two different things. abstraction is implemented in all classes but not all classes are abstract. Nice presentation.
@morshedraiankhan69682 жыл бұрын
Understood the concept of Abstraction through real world example. Thanks.
@unrealdevop11 ай бұрын
So an abstract class can help ensure that things are following a kind of convention so that actions can be performed in a similar manner across different objects of that type. I suppose this is even more important when working on a project with multiple coders as well as keeping things clean and readable.
@a.i.o55733 жыл бұрын
I wish you great success, health, love, and happiness ♥️♥️♥️♥️🌹🌹🌹🌹
@CodeBeauty3 жыл бұрын
Thank you so much! I wish a the same to you!! ♥️♥️♥️
@JawwadHafeez7 ай бұрын
Thanks .. very detailed and clear explanation. .. really appreciate.
@nawabkhan94623 жыл бұрын
Madam , you are teaching very well. I am your regular student. Madam, I think now its time come to make some comprehensive gaming code by using c++. I sincerely request to you to make some coding on games or any app development.
@souvikmukherjee90743 жыл бұрын
Thank you very much for such great content. Your way of teaching is really helpful and a blessing for us. You break down hard topics into simpler understandable chunks. Please make some videos on how to make GUI apps on C++ and a deeper dive into templates... ❤❤❤
@m.g.mourad32412 жыл бұрын
Do pure virtual functions have to be of type void? In other words, can I implement a function that return something and still set it to equal 0?
@adilkhalid66253 жыл бұрын
A wonderful and interesting lesson, especially the realistic examples, and I liked it very much ❤️❤️Thank you for your efforts
@tanmaiysethiajain43673 жыл бұрын
would you make more videoes regarding other features in oops like overloading ,
@CodeBeauty3 жыл бұрын
Yep, operator overloading video is here: kzbin.info/www/bejne/eJ-wn6KwqLiDo9k :D :D
@ThreeHubs3 жыл бұрын
Hi Saldina. Please create a playlist for a full project
@midastouchh3 жыл бұрын
Good teaching skills, you make me understand better.... Thanks Who else noticed the dark mode ☠️☠️
@ird12813 жыл бұрын
what should I do after I finish this playlist? Is it the complete oop course? Thank you for everything btw ;)
@StephanMwangi9 ай бұрын
Thank you.. You are such a blessing
@thuong_st63502 жыл бұрын
The way you teach is really interesting and easy to understand, thank you so much for your lessons. By the way, could you please make videos to teach about design patterns in C++
@petercc493 жыл бұрын
I like your class very much!
@CodeBeauty3 жыл бұрын
🥰💙
@XPSYCHOIZEDX Жыл бұрын
Thank you, you just helped me in college frfr
@patino5553 жыл бұрын
Best teacher ever!!! Thanks a lot for your time and for sharing your knowledge, could you recommend some resources for learning winapi implementation in c++.
@armo-xorg48043 жыл бұрын
What is the major you work in in the field of programming and what are the programming languages that you know And what is your age and I need a plan to learn artifical intelligence with c++
@alexandruteodor35852 жыл бұрын
Thank you for this clear explanation of Abstraction!
@klasr58373 жыл бұрын
My Q:::: The word u mentioned "hidden" can you please explain how the code is hidden from one to another. If i make 3 files and separate each class to one one file. If i need to deliver my code but i don't want to give source code so how compiled version of the code i can share and use this methods please explain.
@malgailany3 жыл бұрын
Very clear and informative. Thank you!
@AswinPMony22 күн бұрын
its very clear, Thanks alot
@broccoli3223 жыл бұрын
Very well explained! Thanks!
@Kanexxable3 жыл бұрын
Hello I'm new to OOP I'm wondering what is are the types of classes i should be making i wan't to make rest api's or at least become a front-end dev I'm confused about concept's like factories services and repositories. What other kinds of classes should I know about as a beginner to making rest-api's. What is a service how do you make them why. etc
@ozolinsivars2 жыл бұрын
Hi Saldina, Could You make the videos in a way, when you explain something for a longer period, like abstraction here, that we do not see visual studio, but we get You full screen. Even though I am watching on laptop, I find my nose almost touching the screen. VS at this point has not been used and is not important, your explanation so far is everything. Love your videos and content Keep up the excelent work.
@amiganer6811303 жыл бұрын
You are using (again) "new" without a "delete". Will that end in a time in "out of memory error"?
@felipegomez30473 жыл бұрын
Just thank you a million times!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@aliafzal30293 жыл бұрын
heyyy whatup! i hope u r fine,i just want to know that my visual studio basic us not working properly i dont know why means i think compiler is not allow us to download i think in our country..So please tell me any alternative softare on which i perform programming with the help of your video..plz reply me Thankyou❤️
@CodeBeauty3 жыл бұрын
Hmm, do you want to try VS Code? 🤗 Here is a video that will help you to set it up: kzbin.info/www/bejne/j5iun61_i5mog6c
@isaacatia-abugbilla24763 жыл бұрын
Thanks for this. I have a question not related to this but on OOP. When is the keyword "this" used. I see that a lot but can't seem to figure out the importance. Is it equivalent to the "self" keyword used in python? Thanks in advance
@shantanu83 Жыл бұрын
A very good video. Less detailed regarding how different developers can work together, copying all abstract functions for example shown I. E android and iphone in one file is error prone. Maybe headers and libraries for android and iPhone can further enhance this concept.
@habiborrahaman45313 жыл бұрын
today at first i see your video, just amazing your teaching. move on as a good tutor.
@takemetoyourheart82802 жыл бұрын
That's amazing! ❤️
@legendsyt83343 жыл бұрын
Really Helpful and very very thank you.............
@Adsvitam3 жыл бұрын
Thanks for your videos. Your English is really good and understandable because you articulate well. However I usually put the translation in French so that it is easier for me and on some videos the option is not activated.
@LetszGoo3 жыл бұрын
I don't know why I always came here Even after I already done these topic 😂😂😂😂. Btw nice explaination 👍👍👍.
@CodeBeauty3 жыл бұрын
☺😁😝
@greywind47283 жыл бұрын
Thanks and wish yu loads of happiness
@CodeBeauty3 жыл бұрын
🙏💙
@charlessherwinsangabriel15763 жыл бұрын
I like how the dark mode syngergizes with your outfit
@ritoshirsasarkar83013 жыл бұрын
Nice explanation!
@PraveenKumar-sr7ob3 жыл бұрын
really nice content by you saldeena mam thanks alot
@Kimanxo3 жыл бұрын
Hi madam , i want to get into building Desktop Application using C++ , can you guide me through it what are the libraries or the frameworks used , i heard a lot about Qt , and whats the difference between C++QT and PyQt . (sorry if i asked a lot )
@Faizansep53 жыл бұрын
What is the last line system("pause>0")
@CodeBeauty3 жыл бұрын
Here is the explanation ☺☺🤗 kzbin.info/www/bejne/jJSvfn97rJmmpJo
@sajadulmulk12453 жыл бұрын
can u tell difference between the abstraction and polymorphism... it seems like polymorhpishm too.
@julianmiglio82883 жыл бұрын
Very interesting, thank you very much!
@farzadvaziri Жыл бұрын
set your ide theme with your cloths? genius and beautiful :)
@deepak-lv4vn3 жыл бұрын
Hey thanks a lot, this Android example was too good!
@hungmai24113 жыл бұрын
I want to do more exercise about OOP in c++. Can you give some exercises about this, please? I thank you very much