Go Concepts - Operators: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 71: Line 71:
Used for:
Used for:
* access of a <tt>struct</tt>'s fields.
* access of a <tt>struct</tt>'s fields.
* invoke a method on the instance of the type the [[Go_Concepts_-_Functions#Syntax_2|method]] is associated with.
* invoke a method on the ''instance'' of the type the [[Go_Concepts_-_Functions#Syntax_2|method]] is associated with, or on the ''pointer'' to an instance of the type the method is associated with.

Revision as of 04:36, 30 March 2016

External

Internal

+

Addition or concatenation. The compiler figures out the semantics based on the operands' types.

Applies to:

-

Subtraction

*

* is the multiplication operator.

* is used with pointers as dereference operator. For more details see reference and dereference operators.

* designates pointer types.

&

& is the reference operator. For more details see reference and dereference operators.

/

Division

%

Remainder

=

The assignment operator.

+=

Addition and assignment.

==

The equality operator. Returns a boolean value.

[]

"[]" is the indexing operator. If the index is out of bounds, the runtime generates a run-time panic:

panic: runtime error: index out of range

Applies to:

:=

Variable declaration and assignment. Also known as short variable declaration operator.

<-

.

Used for:

  • access of a struct's fields.
  • invoke a method on the instance of the type the method is associated with, or on the pointer to an instance of the type the method is associated with.