The Object Orientation in Go
This lesson summarizes how object orientation is handled by Go and upto which extent object orientation can be handled by Go.
We'll cover the following...
Summary on object orientation
Let us summarize what we have seen about object orientation in Golang so far: Go has no classes, but instead, it has loosely coupled types and their methods to implement interfaces. The three important aspects of OO-languages are encapsulation, inheritance, and ...