C++ Polymorphism and Virtual Member Functions [6]

  Рет қаралды 10,176

Professor Hank Stalica

Professor Hank Stalica

Жыл бұрын

In object-oriented programming, polymorphism enables object reference variables or pointers to reference objects of different types, and to invoke the appropriate member functions based on the type of object being referenced.
Learn how through writing sample classes in this C++ tutorial for beginners written with Visual Studio 2022 C++ .
// Join the new Programming for Everyone Community Forum:
professorhank.freeforums.net/
// Learn More //
The Inheritance, Polymorphism,and Virtual Functions play list:
• CH15: Inheritance, Pol...
// Consider supporting this channel in multiple ways
paypal.me/hankstalica1
Bitcoin: 177wfkQwzXiC8o2whQMVpSyuWUs95krKYB

Пікірлер: 19
@orionpluto1214
@orionpluto1214 2 ай бұрын
The best explanation I've found on this subject, thank you very much !
@dwivedys
@dwivedys 2 ай бұрын
Absolutely wonderful!
@saramomen2161
@saramomen2161 7 ай бұрын
You explained too well. Tomorrow is my exam and I understood the topic completely. Thank you.
@ProfessorHankStalica
@ProfessorHankStalica 7 ай бұрын
Glad it helped!
@Johannes-vr3vc
@Johannes-vr3vc 4 ай бұрын
Some time ago, when I used g++, I could type something like this: Square *s = (class Square*)&r; I think this will probably still work and maybe it explains things better.
@menachemlevi
@menachemlevi 5 ай бұрын
amazing keep going
@ProfessorHankStalica
@ProfessorHankStalica 5 ай бұрын
Thank you, I will
@AlexTrouman-oi1yp
@AlexTrouman-oi1yp 7 ай бұрын
Mr.Hank please what is the difference betwen ~square(){}; and virtuel ~square(){}; .Thanks for your explanation
@ProfessorHankStalica
@ProfessorHankStalica 7 ай бұрын
It's the difference between using static binding and dynamic binding. If you want C++ to decide which method to use at runtime, you use dynamic binding (virtual), otherwise you use static binding. Sometimes C++ has to decide which destructor to use at run time. Basically, if you expect your class will ever be inherited from, you should make the destructor virtual.
@user-hq2pc5yz6p
@user-hq2pc5yz6p 6 ай бұрын
what if we did r.print()
@bashiraddean-mufarreh
@bashiraddean-mufarreh Жыл бұрын
im first watching 🤓first like 👍🏻
@manedurphy
@manedurphy 10 ай бұрын
class Foo { void print() const { cout
@ProfessorHankStalica
@ProfessorHankStalica 10 ай бұрын
It means that the print() function can not contain any code that modifies class member variables. If print were to try, the compiler will give you an error at compile time. For example, class Foo { int x; void print() const { x = 0; cout
@manedurphy
@manedurphy 10 ай бұрын
@@ProfessorHankStalica thank you for explaining. new subscriber 🤝
@egetan9247
@egetan9247 6 ай бұрын
Sir , I did not understand something , which is ; Why we put virtual for all destructors meanwhile put virtual for only base class's print function . Thank you for considering :)
@ProfessorHankStalica
@ProfessorHankStalica 6 ай бұрын
You use virtual on methods that you expect will be overridden in child classes. If there is a chance your class gets inherited from, then it's a good practice to make destructors virtual. That way, if the classes get used in a polymorphic context, you ensure the correct destructor is executed for each object.
@egetan9247
@egetan9247 6 ай бұрын
@@ProfessorHankStalica thank you so much.. :)
@massimoazzano
@massimoazzano 5 ай бұрын
I like you use a geometric example, people like me can visualize the proposed problem, meaning and scope!
@jesuschrist1501
@jesuschrist1501 6 ай бұрын
yea but why the hell would you ever need to use all this shyt, keep it simple and readable.
C++ Abstract base classes and pure virtual functions [7]
7:09
Professor Hank Stalica
Рет қаралды 3,7 М.
Dynamic Binding (Polymorphism) With The Virtual Keyword | C++ Tutorial
9:57
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 16 МЛН
When You Get Ran Over By A Car...
00:15
Jojo Sim
Рет қаралды 23 МЛН
20- C++ - OOP -  Polymorphism and virtual Functions
23:00
محمد الدسوقى
Рет қаралды 100 М.
C# polymorphism 🎭
5:11
Bro Code
Рет қаралды 74 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 741 М.
C++ OOP - What is inheritance in programming?
16:32
CodeBeauty
Рет қаралды 137 М.
Inheritance in C++
8:00
The Cherno
Рет қаралды 379 М.
Fundamental Concepts of Object Oriented Programming
9:16
Computer Science
Рет қаралды 864 М.