Go Interfaces: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 20: Line 20:
}
}
</pre>
</pre>
=Initialization=

Revision as of 17:03, 30 March 2016

Internal

Overview

Interfaces are not types.

Can only structs be interfaces, or there are other things that can be interfaces?

Declaration

The interface declaration is introduced by the type keyword, to indicated that this is a user-defined type, followed by the interface name and the keyword interface.

type MyInterface interface {
     functionName1() return_type
     functionName2() return_type
     ...
}

Initialization