What do tou mean by realization

Showing Answers 1 - 1 of 1 Answers

Realization is nothing but implementation of ABC or an Interface.class ABC{public: virtual virtual1() =0; virtual virtual2()=0;};class Implementation1:public ABC{public: virtual1(){}; virutal2(){};};The relationship b/w them is 'Realization'. It is denoted by the Closed Arrow of dotted lines.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions