Polymorphism in Golang
In Object-Oriented Programming, an object can behave like another object. This property is called polymorphism. This post will cover how we achieve polymorphism in Golang. What is polymorphism? Polymorphism is a property that is available to many OO-languages. Go despite not being an OO-language achieves polymorphism through interfaces. Polymorphism using interfaces In Golang, polymorphism is […]
Polymorphism in Golang Read More »