+ 3
what are the main functions of a polymorphism
polymorphism
2 odpowiedzi
+ 8
You can use a common semantics to express your methods
Example:
circle.draw()
rectangle.draw()
The method draw() is polymorfic, because can be applied to objects of different class
+ 2
thanks for this precious information