Is there any difference between polymorphism implemented in c++ and the one implemented in python ?
vbx_wx -6 Junior Poster
Recommended Answers
Jump to PostPolymorphism ---
Behavior of an "object" is determined at run-time
and depends on what kind/type of object it is:# for instance x * y x = 2; y = 3; print x * y # 6 # but ... x = 'A'; y = 3; print …
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.