This article explains embedding interfaces concept in golang. We first begin by writing the main crux of the code.
|
|
In the above code we declare a type of struct named Dog. There is a method embedded to the Dog struct called speak.
We declare a new struct Animal, which has Dog as one of if its fields. Now, All the methods embedded on the struct Dog can be accessed by creating a variable for the struct type Animal (Line 14).
Though this works fine, the problem here is, the struct Animal has a field Dog hard coded to it. Suppose we have to include a cat, we have to then alter the struct Animal to include cat. It doesnt end there, we’ll also have to modify the variableinitializationn to include Cat. Now, since both dog and cat has the function speak we will have to explicitly specify which function are we intending to call. Code including cat is given below.
|
|
To make it easy for us to swap between different animals, or include multiple animals, we can make use of Interfaces.
Interfaces
Step 1: Create a type of interface that encompasses the common functionalites.
|
|
Now, any type that implements speak function is an implementation of the Language interface.
Step 2: Create a type of struct Dog, and implement the functions of the interface.
|
|
Step 3: Include the interface as a field to the Animal struct
|
|
Now, any struct that implements the speak function can be initialized to the Language field during declaration. We need not disturb the Animal struct again.
Invoking the speak function for Dog is just a matter of initializing the variable with the struct Animal with any one of the implementations of the Language interface as below.
|
|
Including a new animal is easy. All we have to do is, create a new struct (Ex. Cat), embed a function speak() to the struct.
|
|
The real world advantage to doing this is that, now any time we decide to replace a functionality, say, we have included some customer specific logic, it is as easy as swapping it with the new struct that implements the interface.
Full code can be found below
|
|
In line 23, Dog can be replaced by Cat and just by swapping, we can include functionality of cat instead of dog.
The output is
Meow