0 votes
in GoLang by
What is Golang Interface

1 Answer

0 votes
by

Golang Interface is a collection of method signatures used by a Type to implement the behavior of objects. The main goal of Golang interface is to provide method signatures with names, arguments, and return types. It is up to a Type to declare and implement the method. An interface in Golang can be declared using the keyword “interface.”

...