InterviewSolution
Saved Bookmarks
| 1. |
How are interfaces implemented in Golang? |
|
Answer» Golang language interfaces are DIFFERENT from other LANGUAGES. In Golang, type implements an interface through the implementation of its METHODS. There are no explicit declarations or no “implements” keyword. Examplepackage main |
|