Go Concepts - Functions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:


=Overview=
=Overview=
''Straight-line code'', you block when you need to


=Syntax=
=Syntax=

Revision as of 00:13, 22 March 2016

External

Internal

Overview

Syntax

func [value-receiver] <name>([parameter-identifier1] [type1], [parameter-identifier2] [type2], ...) ([return-type1], [return-type2], ...) {

   statement1
   statemen2
   ...

   return <return-value1>, <return-value2>

}

Examples:

func add(a int, b int) (int) {
   return a + b;
}

Built-in Functions

make() append() copy() delete() .
new() len() cap() . .
. . . . .

Closures

Anonymous function that capture local variables.

More about closures is available here.


Methods

Difference between Functions and Methods

Receivers

Value Receivers

Pointer Receivers