C++ Polymorphism and Virtual Member Functions [6]

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

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 !
@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!
@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.
@menachemlevi
@menachemlevi 5 ай бұрын
amazing keep going
@ProfessorHankStalica
@ProfessorHankStalica 5 ай бұрын
Thank you, I will
@bashiraddean-mufarreh
@bashiraddean-mufarreh Жыл бұрын
im first watching 🤓first like 👍🏻
@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.
@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 🤝
@user-hq2pc5yz6p
@user-hq2pc5yz6p 6 ай бұрын
what if we did r.print()
@massimoazzano
@massimoazzano 5 ай бұрын
I like you use a geometric example, people like me can visualize the proposed problem, meaning and scope!
@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.. :)
@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
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН
Incredible magic 🤯✨
00:53
America's Got Talent
Рет қаралды 66 МЛН
Smart Sigma Kid #funny #sigma #comedy
00:25
CRAZY GREAPA
Рет қаралды 18 МЛН
Me: Don't cross there's cars coming
00:16
LOL
Рет қаралды 15 МЛН
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 741 М.
Use Arc Instead of Vec
15:21
Logan Smith
Рет қаралды 138 М.
Move Semantics in C++
13:10
The Cherno
Рет қаралды 284 М.
what even is a "reference"?
5:44
Low Level Learning
Рет қаралды 122 М.
Abstract Classes And Pure Virtual Functions | C++ Tutorial
11:05
Portfolio Courses
Рет қаралды 15 М.
C++ classes: static and instance class member variables and functions [1]
9:38
Professor Hank Stalica
Рет қаралды 4 М.
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН