C++ Polymorphism and Virtual Member Functions [6]

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

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

Пікірлер: 20
@orionpluto1214
@orionpluto1214 3 ай бұрын
The best explanation I've found on this subject, thank you very much !
@saramomen2161
@saramomen2161 8 ай бұрын
You explained too well. Tomorrow is my exam and I understood the topic completely. Thank you.
@ProfessorHankStalica
@ProfessorHankStalica 8 ай бұрын
Glad it helped!
@dwivedys
@dwivedys 2 ай бұрын
Absolutely wonderful!
@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.
@lg7t
@lg7t 10 күн бұрын
so why did we make all the destrcutors virtual should not that be just for the base class or we did it for readbilty of the code ?
@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 11 ай бұрын
class Foo { void print() const { cout
@ProfessorHankStalica
@ProfessorHankStalica 11 ай бұрын
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 11 ай бұрын
@@ProfessorHankStalica thank you for explaining. new subscriber 🤝
@egetan9247
@egetan9247 7 ай бұрын
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 7 ай бұрын
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,9 М.
WHY did this C++ code FAIL?
38:10
The Cherno
Рет қаралды 228 М.
Object-Oriented Programming is Embarrassing: 4 Short Examples
28:03
How to write SOLID C++
29:22
platis.solutions
Рет қаралды 39 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 749 М.
what even is a "reference"?
5:44
Low Level Learning
Рет қаралды 124 М.
C# polymorphism 🎭
5:11
Bro Code
Рет қаралды 75 М.
Dynamic Binding (Polymorphism) With The Virtual Keyword | C++ Tutorial
9:57
Every single feature of C# in 10 minutes
9:50
Train To Code
Рет қаралды 107 М.
Fundamental Concepts of Object Oriented Programming
9:16
Computer Science
Рет қаралды 870 М.