Go Concepts - Operators: Difference between revisions
Jump to navigation
Jump to search
(→+) |
(→=) |
||
Line 32: | Line 32: | ||
The assignment operator. | The assignment operator. | ||
= += = | |||
Addition and assignment. | |||
= == = | = == = |
Revision as of 02:26, 23 March 2016
External
- Go Specification - Operators: https://golang.org/ref/spec#Operators
Internal
+
Addition or concatenation. The compiler figures out the semantics based on the operands' types.
Applies to:
-
Subtraction
*
Multiplication
/
Division
%
Remainder
=
The assignment operator.
+=
Addition and assignment.
==
[]
"[]" 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:
- strings
- arrays
:=
Variable declaration and assignment. Also known as short variable declaration operator.