Which should you use?
Published in 6 min read May 10, 2020
--
Inheritance has been one of the most popular characteristics of OOP since it was introduced. But it seems not to be recommended as good practice in programming these days. It’s easy to find many discussions and articles on “Composition over Inheritance” as a precaution for engineers. Some modern programming languages like Go don’t even allow the use of inheritance but only the…