Understanding Golang Interfaces [Explained with best examples]
In this tutorial, we will understand Golang interfaces with the help of some real world examples. Go does not directly support Object Oriented Programming (OOP) because it does not contain the concept of classes. But methods and interfaces can be used to implement object oriented code in Go. This article assumes that you understand methods, ... Read more