C++ polymorphism | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

C++ polymorphism

Demonstrate with code extracts the following types of C++ polymorphism, 1)Early binding 2)Late binding

7th Jul 2018, 2:37 PM
Vincent Alulu
Vincent Alulu - avatar
17 Answers
+ 4
Ok Can you share the Question Links here Let me see them 👍👍👍
13th Jul 2018, 9:33 PM
Femi
Femi - avatar
+ 4
No probs No need to Say Please 👍👍👍 Letvme go through it
13th Jul 2018, 10:23 PM
Femi
Femi - avatar
+ 2
Choose late binding functions with virtual it is late binding , or it is early binding.
7th Jul 2018, 2:53 PM
RainStorm
RainStorm - avatar
+ 2
Wait
7th Jul 2018, 3:18 PM
RainStorm
RainStorm - avatar
+ 2
https://code.sololearn.com/ckbDbB2WqY6Q/?ref=app
7th Jul 2018, 5:38 PM
Femi
Femi - avatar
+ 1
Write for both early binding and late binding... Please
7th Jul 2018, 3:18 PM
Vincent Alulu
Vincent Alulu - avatar
+ 1
Thank you so much. Cos I wanna see the steps and everything in the program
7th Jul 2018, 3:20 PM
Vincent Alulu
Vincent Alulu - avatar
+ 1
Thank you soo much
7th Jul 2018, 3:31 PM
Vincent Alulu
Vincent Alulu - avatar
+ 1
I really appreciate
7th Jul 2018, 3:31 PM
Vincent Alulu
Vincent Alulu - avatar
+ 1
Thank you so much Ishola... Hope you will also answer my next questions onwards...Please!!
8th Jul 2018, 9:43 AM
Vincent Alulu
Vincent Alulu - avatar
+ 1
Ok No probs Vincent Alulu
13th Jul 2018, 4:37 PM
Femi
Femi - avatar
+ 1
I don't know how to share the links...Maybe you just click on my profile and answer the four last questions... So that I go through yours🙏🏿🙏🏿🙏🏿 please
13th Jul 2018, 9:40 PM
Vincent Alulu
Vincent Alulu - avatar
19th May 2020, 11:02 PM
Naveed
Naveed - avatar
0
How about my other question on constructors and deconstructors??
7th Jul 2018, 3:36 PM
Vincent Alulu
Vincent Alulu - avatar
0
Hey Please check out my other questions about four of them and help me out please!!
13th Jul 2018, 9:30 PM
Vincent Alulu
Vincent Alulu - avatar
0
#include <iostream> using namespace std; class Drink { protected: int price; public: void setPrice(int a){ price = a; } }; class Coffee: public Drink { public: void make() { cout<<"Coffee:"<<price<<endl; } }; class Tea :public Drink{ public: void make() { cout<<"Tea:"<<price<<endl; } }; int main() { Coffee c; Tea t; Drink *e1 = &c; Drink *e2 = &t; *e1->setPrice(5); *e2->setPrice(6); }
20th Nov 2022, 6:47 AM
Dilip Maurya
Dilip Maurya - avatar