Go Concepts - Operators: Difference between revisions
(→.) |
(→*) |
||
Line 21: | Line 21: | ||
<tt>*</tt> is the multiplication operator. | <tt>*</tt> is the multiplication operator. | ||
<tt>*</tt> is used with pointers as dereference operator. For more details see [[Go_Concepts_-_Lexical_Structure#Reference_and_Dereference_Operators|reference and dereference operators]]. | As "address operator", <tt>*</tt> is used with pointers as dereference operator. For more details see [[Go_Concepts_-_Lexical_Structure#Reference_and_Dereference_Operators|reference and dereference operators]]. | ||
<tt>*</tt> designates [[Go_Concepts_-_The_Type_System#Pointer_Types|pointer types]]. | <tt>*</tt> designates [[Go_Concepts_-_The_Type_System#Pointer_Types|pointer types]]. |
Revision as of 19:28, 12 April 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
*
* is the multiplication operator.
As "address 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.
Can be used to test string equality.
[]
"[]" 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:
:=
Short variable declaration operator. It does variable declaration and assignment (initialization). The type of the variable is inferred from the right side expression.
<-
<- is the left arrow operator. It is used to send and receive messages on channels.
.
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.
- When invoking a method, the ... operator can be used both with a value or a pointer. In both situations it has the same semantics.