| 
									
										
										
										
											2009-10-01 14:08:00 -07:00
										 |  |  | <!-- The Go Programming Language Specification --> | 
					
						
							| 
									
										
										
										
											2009-09-17 08:05:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 10:48:14 -07:00
										 |  |  | <!--
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Todo | 
					
						
							|  |  |  | [ ] clarify: two equal lowercase identifiers from different packages denote different objects | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | [ ] need language about function/method calls and parameter passing rules | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | [ ] last paragraph of #Assignments (constant promotion) should be elsewhere | 
					
						
							|  |  |  |     and mention assignment to empty interface. | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | [ ] need to say something about "scope" of selectors? | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | [ ] clarify what a field name is in struct declarations | 
					
						
							|  |  |  |     (struct{T} vs struct {T T} vs struct {t T}) | 
					
						
							| 
									
										
										
										
											2009-07-31 18:05:07 -07:00
										 |  |  | [ ] need explicit language about the result type of operations | 
					
						
							|  |  |  | [ ] may want to have some examples for the types of shift operations | 
					
						
							| 
									
										
										
										
											2009-10-20 08:27:14 -07:00
										 |  |  | [ ] should string(1<<s) and float(1<<s) be valid? | 
					
						
							| 
									
										
										
										
											2009-04-20 15:32:20 -07:00
										 |  |  | [ ] should probably write something about evaluation order of statements even | 
					
						
							|  |  |  | 	though obvious | 
					
						
							| 
									
										
										
										
											2009-07-16 20:31:41 -07:00
										 |  |  | [ ] specify iteration direction for range clause | 
					
						
							|  |  |  | [ ] review language on implicit dereferencing | 
					
						
							| 
									
										
										
										
											2008-09-09 10:48:14 -07:00
										 |  |  | --> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-20 15:32:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Introduction">Introduction</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | This is a reference manual for the Go programming language. For | 
					
						
							| 
									
										
										
										
											2009-11-02 15:28:41 -08:00
										 |  |  | more information and other documents, see <a href="http://golang.org/">http://golang.org</a>. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 14:45:09 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | Go is a general-purpose language designed with systems programming | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | in mind. It is strongly typed and garbage-collected and has explicit | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | support for concurrent programming.  Programs are constructed from | 
					
						
							|  |  |  | <i>packages</i>, whose properties allow efficient management of | 
					
						
							|  |  |  | dependencies. The existing implementations use a traditional | 
					
						
							|  |  |  | compile/link model to generate executable binaries. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 14:45:09 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | The grammar is compact and regular, allowing for easy analysis by | 
					
						
							|  |  |  | automatic tools such as integrated development environments. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-09-17 08:05:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Notation">Notation</h2> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-12-17 15:39:15 -08:00
										 |  |  | The syntax is specified using Extended Backus-Naur Form (EBNF): | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-04-23 14:42:21 -07:00
										 |  |  | Production  = production_name "=" Expression "." . | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | Expression  = Alternative { "|" Alternative } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | Alternative = Term { Term } . | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | Term        = production_name | token [ "..." token ] | Group | Option | Repetition . | 
					
						
							|  |  |  | Group       = "(" Expression ")" . | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | Option      = "[" Expression "]" . | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | Repetition  = "{" Expression "}" . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Productions are expressions constructed from terms and the following | 
					
						
							|  |  |  | operators, in increasing precedence: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | |   alternation | 
					
						
							|  |  |  | ()  grouping | 
					
						
							|  |  |  | []  option (0 or 1 times) | 
					
						
							|  |  |  | {}  repetition (0 to n times) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-12-17 15:39:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | Lower-case production names are used to identify lexical tokens. | 
					
						
							|  |  |  | Non-terminals are in CamelCase. Lexical symbols are enclosed in | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | double quotes <code>""</code> or back quotes <code>``</code>. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | The form <code>a ... b</code> represents the set of characters from | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <code>a</code> through <code>b</code> as alternatives. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Source_code_representation">Source code representation</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | Source code is Unicode text encoded in | 
					
						
							|  |  |  | <a href="http://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | canonicalized, so a single accented code point is distinct from the | 
					
						
							|  |  |  | same character constructed from combining an accent and a letter; | 
					
						
							|  |  |  | those are treated as two code points.  For simplicity, this document | 
					
						
							|  |  |  | will use the term <i>character</i> to refer to a Unicode code point. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | Each code point is distinct; for instance, upper and lower case letters | 
					
						
							|  |  |  | are different characters. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2010-02-16 16:47:18 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-02-17 15:50:34 -08:00
										 |  |  | Implementation restriction: For compatibility with other tools, a | 
					
						
							|  |  |  | compiler may disallow the NUL character (U+0000) in the source text. | 
					
						
							| 
									
										
										
										
											2010-02-16 16:47:18 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Characters">Characters</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | The following terms are used to denote specific Unicode character classes: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							|  |  |  | unicode_char   = /* an arbitrary Unicode code point */ . | 
					
						
							|  |  |  | unicode_letter = /* a Unicode code point classified as "Letter" */ . | 
					
						
							|  |  |  | unicode_digit  = /* a Unicode code point classified as "Digit" */ . | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | In <a href="http://www.unicode.org/versions/Unicode5.2.0/">The Unicode Standard 5.2</a>, | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Section 4.5 General Category-Normative | 
					
						
							|  |  |  | defines a set of character categories.  Go treats | 
					
						
							|  |  |  | those characters in category Lu, Ll, Lt, Lm, or Lo as Unicode letters, | 
					
						
							|  |  |  | and those in category Nd as Unicode digits. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Letters_and_digits">Letters and digits</h3> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | The underscore character <code>_</code> (U+005F) is considered a letter. | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | letter        = unicode_letter | "_" . | 
					
						
							|  |  |  | decimal_digit = "0" ... "9" . | 
					
						
							|  |  |  | octal_digit   = "0" ... "7" . | 
					
						
							|  |  |  | hex_digit     = "0" ... "9" | "A" ... "F" | "a" ... "f" . | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Lexical_elements">Lexical elements</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Comments">Comments</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | There are two forms of comments: | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | <ol> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | <i>Line comments</i> start with the character sequence <code>//</code> | 
					
						
							|  |  |  | and continue through the next newline. A line comment acts like a newline. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | <i>General comments</i> start with the character sequence <code>/*</code> | 
					
						
							|  |  |  | and continue through the character sequence <code>*/</code>. A general | 
					
						
							|  |  |  | comment that spans multiple lines acts like a newline, otherwise it acts | 
					
						
							|  |  |  | like a space. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | </ol> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Comments do not nest. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Tokens">Tokens</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Tokens form the vocabulary of the Go language. | 
					
						
							| 
									
										
										
										
											2009-12-28 14:40:42 -08:00
										 |  |  | There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators | 
					
						
							|  |  |  | and delimiters</i>, and <i>literals</i>.  <i>White space</i>, formed from | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | spaces (U+0020), horizontal tabs (U+0009), | 
					
						
							|  |  |  | carriage returns (U+000D), and newlines (U+000A), | 
					
						
							|  |  |  | is ignored except as it separates tokens | 
					
						
							| 
									
										
										
										
											2009-12-28 14:40:42 -08:00
										 |  |  | that would otherwise combine into a single token. Also, a newline | 
					
						
							|  |  |  | may trigger the insertion of a <a href="#Semicolons">semicolon</a>. | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | While breaking the input into tokens, | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | the next token is the longest sequence of characters that form a | 
					
						
							|  |  |  | valid token. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | <h3 id="Semicolons">Semicolons</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The formal grammar uses semicolons <code>";"</code> as terminators in | 
					
						
							|  |  |  | a number of productions. Go programs may omit most of these semicolons | 
					
						
							|  |  |  | using the following two rules: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <ol> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | When the input is broken into tokens, a semicolon is automatically inserted | 
					
						
							|  |  |  | into the token stream at the end of a non-blank line if the line's final | 
					
						
							|  |  |  | token is | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2010-01-04 17:28:02 -08:00
										 |  |  | 	<li>an identifier | 
					
						
							|  |  |  | 	<li>an integer, floating-point, character, or string literal | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	<li>one of the keywords | 
					
						
							|  |  |  | 	    <code>break</code>, <code>continue</code>, <code>fallthrough</code>, | 
					
						
							|  |  |  | 	    or <code>return</code> | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>one of the operators and delimiters | 
					
						
							|  |  |  | 	    <code>++</code>, <code>--</code>, <code>)</code>, <code>]</code>, | 
					
						
							|  |  |  | 	    or <code>}</code> | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | </ul> | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | To allow complex statements to occupy a single line, a semicolon | 
					
						
							|  |  |  | may be omitted before a closing <code>")"</code> or <code>"}"</code>. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | </ol> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | To reflect idiomatic use, code examples in this document elide semicolons | 
					
						
							|  |  |  | using these rules. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Identifiers">Identifiers</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Identifiers name program entities such as variables and types. | 
					
						
							|  |  |  | An identifier is a sequence of one or more letters and digits. | 
					
						
							|  |  |  | The first character in an identifier must be a letter. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | identifier = letter { letter | unicode_digit } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | a | 
					
						
							|  |  |  | _x9 | 
					
						
							|  |  |  | ThisVariableIsExported | 
					
						
							|  |  |  | αβ | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | Some identifiers are <a href="#Predeclared_identifiers">predeclared</a>. | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-03 15:15:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Keywords">Keywords</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The following keywords are reserved and may not be used as identifiers. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | break        default      func         interface    select | 
					
						
							|  |  |  | case         defer        go           map          struct | 
					
						
							|  |  |  | chan         else         goto         package      switch | 
					
						
							|  |  |  | const        fallthrough  if           range        type | 
					
						
							|  |  |  | continue     for          import       return       var | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Operators_and_Delimiters">Operators and Delimiters</h3> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | The following character sequences represent <a href="#Operators">operators</a>, delimiters, and other special tokens: | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | +    &     +=    &=     &&    ==    !=    (    ) | 
					
						
							|  |  |  | -    |     -=    |=     ||    <     <=    [    ] | 
					
						
							|  |  |  | *    ^     *=    ^=     <-    >     >=    {    } | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | /    <<    /=    <<=    ++    =     :=    ,    ; | 
					
						
							|  |  |  | %    >>    %=    >>=    --    !     ...   .    : | 
					
						
							| 
									
										
										
										
											2009-03-11 21:59:05 -07:00
										 |  |  |      &^          &^= | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Integer_literals">Integer literals</h3> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | An integer literal is a sequence of digits representing an | 
					
						
							|  |  |  | <a href="#Constants">integer constant</a>. | 
					
						
							|  |  |  | An optional prefix sets a non-decimal base: <code>0</code> for octal, <code>0x</code> or | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <code>0X</code> for hexadecimal.  In hexadecimal literals, letters | 
					
						
							|  |  |  | <code>a-f</code> and <code>A-F</code> represent values 10 through 15. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | int_lit     = decimal_lit | octal_lit | hex_lit . | 
					
						
							|  |  |  | decimal_lit = ( "1" ... "9" ) { decimal_digit } . | 
					
						
							|  |  |  | octal_lit   = "0" { octal_digit } . | 
					
						
							|  |  |  | hex_lit     = "0" ( "x" | "X" ) hex_digit { hex_digit } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | 42 | 
					
						
							|  |  |  | 0600 | 
					
						
							|  |  |  | 0xBadFace | 
					
						
							|  |  |  | 170141183460469231731687303715884105727 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Floating-point_literals">Floating-point literals</h3> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A floating-point literal is a decimal representation of a | 
					
						
							|  |  |  | <a href="#Constants">floating-point constant</a>. | 
					
						
							|  |  |  | It has an integer part, a decimal point, a fractional part, | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | and an exponent part.  The integer and fractional part comprise | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | decimal digits; the exponent part is an <code>e</code> or <code>E</code> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | followed by an optionally signed decimal exponent.  One of the | 
					
						
							|  |  |  | integer part or the fractional part may be elided; one of the decimal | 
					
						
							|  |  |  | point or the exponent may be elided. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | float_lit = decimals "." [ decimals ] [ exponent ] | | 
					
						
							|  |  |  |             decimals exponent | | 
					
						
							|  |  |  |             "." decimals [ exponent ] . | 
					
						
							|  |  |  | decimals  = decimal_digit { decimal_digit } . | 
					
						
							|  |  |  | exponent  = ( "e" | "E" ) [ "+" | "-" ] decimals . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | 0. | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | 72.40 | 
					
						
							|  |  |  | 072.40  // == 72.40 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 2.71828 | 
					
						
							|  |  |  | 1.e+0 | 
					
						
							|  |  |  | 6.67428e-11 | 
					
						
							|  |  |  | 1E6 | 
					
						
							|  |  |  | .25 | 
					
						
							|  |  |  | .12345E+5 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <h3 id="Imaginary_literals">Imaginary literals</h3> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | An imaginary literal is a decimal representation of the imaginary part of a | 
					
						
							|  |  |  | <a href="#Constants">complex constant</a>. | 
					
						
							|  |  |  | It consists of a | 
					
						
							|  |  |  | <a href="#Floating-point_literals">floating-point literal</a> | 
					
						
							|  |  |  | or decimal integer followed | 
					
						
							|  |  |  | by the lower-case letter <code>i</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <pre class="ebnf"> | 
					
						
							|  |  |  | imaginary_lit = (decimals | float_lit) "i" . | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | 0i | 
					
						
							|  |  |  | 011i  // == 11i | 
					
						
							|  |  |  | 0.i | 
					
						
							|  |  |  | 2.71828i | 
					
						
							|  |  |  | 1.e+0i | 
					
						
							|  |  |  | 6.67428e-11i | 
					
						
							|  |  |  | 1E6i | 
					
						
							|  |  |  | .25i | 
					
						
							|  |  |  | .12345E+5i | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Character_literals">Character literals</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A character literal represents an <a href="#Constants">integer constant</a>, | 
					
						
							|  |  |  | typically a Unicode code point, as one or more characters enclosed in single | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | quotes.  Within the quotes, any character may appear except single | 
					
						
							|  |  |  | quote and newline. A single quoted character represents itself, | 
					
						
							|  |  |  | while multi-character sequences beginning with a backslash encode | 
					
						
							|  |  |  | values in various formats. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | The simplest form represents the single character within the quotes; | 
					
						
							|  |  |  | since Go source text is Unicode characters encoded in UTF-8, multiple | 
					
						
							|  |  |  | UTF-8-encoded bytes may represent a single integer value.  For | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | instance, the literal <code>'a'</code> holds a single byte representing | 
					
						
							|  |  |  | a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while | 
					
						
							|  |  |  | <code>'ä'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing | 
					
						
							|  |  |  | a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | Several backslash escapes allow arbitrary values to be represented | 
					
						
							|  |  |  | as ASCII text.  There are four ways to represent the integer value | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | as a numeric constant: <code>\x</code> followed by exactly two hexadecimal | 
					
						
							|  |  |  | digits; <code>\u</code> followed by exactly four hexadecimal digits; | 
					
						
							|  |  |  | <code>\U</code> followed by exactly eight hexadecimal digits, and a | 
					
						
							|  |  |  | plain backslash <code>\</code> followed by exactly three octal digits. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | In each case the value of the literal is the value represented by | 
					
						
							|  |  |  | the digits in the corresponding base. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | Although these representations all result in an integer, they have | 
					
						
							|  |  |  | different valid ranges.  Octal escapes must represent a value between | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 0 and 255 inclusive.  Hexadecimal escapes satisfy this condition | 
					
						
							|  |  |  | by construction. The escapes <code>\u</code> and <code>\U</code> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | represent Unicode code points so within them some values are illegal, | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | in particular those above <code>0x10FFFF</code> and surrogate halves. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | After a backslash, certain single-character escapes represent special values: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | \a   U+0007 alert or bell | 
					
						
							|  |  |  | \b   U+0008 backspace | 
					
						
							|  |  |  | \f   U+000C form feed | 
					
						
							|  |  |  | \n   U+000A line feed or newline | 
					
						
							|  |  |  | \r   U+000D carriage return | 
					
						
							|  |  |  | \t   U+0009 horizontal tab | 
					
						
							|  |  |  | \v   U+000b vertical tab | 
					
						
							|  |  |  | \\   U+005c backslash | 
					
						
							|  |  |  | \'   U+0027 single quote  (valid escape only within character literals) | 
					
						
							|  |  |  | \"   U+0022 double quote  (valid escape only within string literals) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | All other sequences starting with a backslash are illegal inside character literals. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | char_lit         = "'" ( unicode_value | byte_value ) "'" . | 
					
						
							|  |  |  | unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char . | 
					
						
							|  |  |  | byte_value       = octal_byte_value | hex_byte_value . | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | octal_byte_value = `\` octal_digit octal_digit octal_digit . | 
					
						
							|  |  |  | hex_byte_value   = `\` "x" hex_digit hex_digit . | 
					
						
							|  |  |  | little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit . | 
					
						
							|  |  |  | big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  |                            hex_digit hex_digit hex_digit hex_digit . | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) . | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | 'a' | 
					
						
							|  |  |  | 'ä' | 
					
						
							|  |  |  | '本' | 
					
						
							|  |  |  | '\t' | 
					
						
							|  |  |  | '\000' | 
					
						
							|  |  |  | '\007' | 
					
						
							|  |  |  | '\377' | 
					
						
							|  |  |  | '\x07' | 
					
						
							|  |  |  | '\xff' | 
					
						
							|  |  |  | '\u12e4' | 
					
						
							|  |  |  | '\U00101234' | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="String_literals">String literals</h3> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A string literal represents a <a href="#Constants">string constant</a> | 
					
						
							|  |  |  | obtained from concatenating a sequence of characters. There are two forms: | 
					
						
							|  |  |  | raw string literals and interpreted string literals. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Raw string literals are character sequences between back quotes | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <code>``</code>.  Within the quotes, any character is legal except | 
					
						
							| 
									
										
										
										
											2009-06-18 13:51:14 -07:00
										 |  |  | back quote. The value of a raw string literal is the | 
					
						
							|  |  |  | string composed of the uninterpreted characters between the quotes; | 
					
						
							|  |  |  | in particular, backslashes have no special meaning and the string may | 
					
						
							|  |  |  | span multiple lines. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Interpreted string literals are character sequences between double | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | quotes <code>""</code>. The text between the quotes, | 
					
						
							|  |  |  | which may not span multiple lines, forms the | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | value of the literal, with backslash escapes interpreted as they | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | are in character literals (except that <code>\'</code> is illegal and | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | <code>\"</code> is legal).  The three-digit octal (<code>\</code><i>nnn</i>) | 
					
						
							|  |  |  | and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <i>bytes</i> of the resulting string; all other escapes represent | 
					
						
							|  |  |  | the (possibly multi-byte) UTF-8 encoding of individual <i>characters</i>. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | Thus inside a string literal <code>\377</code> and <code>\xFF</code> represent | 
					
						
							|  |  |  | a single byte of value <code>0xFF</code>=255, while <code>ÿ</code>, | 
					
						
							|  |  |  | <code>\u00FF</code>, <code>\U000000FF</code> and <code>\xc3\xbf</code> represent | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | the two bytes <code>0xc3</code> <code>0xbf</code> of the UTF-8 encoding of character | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | U+00FF. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | string_lit             = raw_string_lit | interpreted_string_lit . | 
					
						
							|  |  |  | raw_string_lit         = "`" { unicode_char } "`" . | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | interpreted_string_lit = `"` { unicode_value | byte_value } `"` . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-06-18 13:51:14 -07:00
										 |  |  | `abc`  // same as "abc" | 
					
						
							|  |  |  | `\n | 
					
						
							|  |  |  | \n`    // same as "\\n\n\\n" | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | "\n" | 
					
						
							|  |  |  | "" | 
					
						
							|  |  |  | "Hello, world!\n" | 
					
						
							|  |  |  | "日本語" | 
					
						
							|  |  |  | "\u65e5本\U00008a9e" | 
					
						
							|  |  |  | "\xff\u00FF" | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | These examples all represent the same string: | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | "日本語"                                 // UTF-8 input text | 
					
						
							|  |  |  | `日本語`                                 // UTF-8 input text as a raw literal | 
					
						
							|  |  |  | "\u65e5\u672c\u8a9e"                    // The explicit Unicode code points | 
					
						
							|  |  |  | "\U000065e5\U0000672c\U00008a9e"        // The explicit Unicode code points | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"  // The explicit UTF-8 bytes | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-29 12:09:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | If the source code represents a character as two code points, such as | 
					
						
							|  |  |  | a combining form involving an accent and a letter, the result will be | 
					
						
							|  |  |  | an error if placed in a character literal (it is not a single code | 
					
						
							|  |  |  | point), and will appear as two code points if placed in a string | 
					
						
							|  |  |  | literal. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 14:45:09 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <h2 id="Constants">Constants</h2> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <p>There are <i>boolean constants</i>, <i>integer constants</i>, | 
					
						
							|  |  |  | <i>floating-point constants</i>, <i>complex constants</i>, | 
					
						
							|  |  |  | and <i>string constants</i>. Integer, floating-point, | 
					
						
							|  |  |  | and complex constants are | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | collectively called <i>numeric constants</i>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A constant value is represented by an | 
					
						
							|  |  |  | <a href="#Integer_literals">integer</a>, | 
					
						
							|  |  |  | <a href="#Floating-point_literals">floating-point</a>, | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <a href="#Imaginary_literals">imaginary</a>, | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <a href="#Character_literals">character</a>, or | 
					
						
							|  |  |  | <a href="#String_literals">string</a> literal, | 
					
						
							|  |  |  | an identifier denoting a constant, | 
					
						
							|  |  |  | a <a href="#Constant_expressions">constant expression</a>, or | 
					
						
							|  |  |  | the result value of some built-in functions such as <code>unsafe.Sizeof</code> | 
					
						
							|  |  |  | and <code>cap</code> or <code>len</code> applied to an array, | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <code>len</code> applied to a string constant, | 
					
						
							|  |  |  | <code>real</code> and <code>imag</code> applied to a complex constant | 
					
						
							|  |  |  | and <code>cmplx</code> applied to numeric constants. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The boolean truth values are represented by the predeclared constants | 
					
						
							|  |  |  | <code>true</code> and <code>false</code>. The predeclared identifier | 
					
						
							|  |  |  | <a href="#Iota">iota</a> denotes an integer constant. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | In general, complex constants are a form of | 
					
						
							|  |  |  | <a href="#Constant_expressions">constant expression</a> | 
					
						
							|  |  |  | and are discussed in that section. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | Numeric constants represent values of arbitrary precision and do not overflow. | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | Constants may be <a href="#Types">typed</a> or untyped. | 
					
						
							|  |  |  | Literal constants, <code>true</code>, <code>false</code>, <code>iota</code>, | 
					
						
							|  |  |  | and certain <a href="#Constant_expressions">constant expressions</a> | 
					
						
							|  |  |  | containing only untyped constant operands are untyped. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A constant may be given a type explicitly by a <a href="#Constant_declarations">constant declaration</a> | 
					
						
							|  |  |  | or <a href="#Conversions">conversion</a>, or implicitly when used in a | 
					
						
							|  |  |  | <a href="#Variable_declarations">variable declaration</a> or an | 
					
						
							|  |  |  | <a href="#Assignments">assignment</a> or as an | 
					
						
							|  |  |  | operand in an <a href="#Expressions">expression</a>. | 
					
						
							|  |  |  | It is an error if the constant value | 
					
						
							|  |  |  | cannot be accurately represented as a value of the respective type. | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | For instance, <code>3.0</code> can be given any integer or any | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | floating-point type, while <code>2147483648.0</code> (equal to <code>1<<31</code>) | 
					
						
							|  |  |  | can be given the types <code>float32</code>, <code>float64</code>, or <code>uint32</code> but | 
					
						
							|  |  |  | not <code>int32</code> or <code>string</code>. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-18 15:59:14 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | There are no constants denoting the IEEE-754 infinity and not-a-number values, | 
					
						
							|  |  |  | but the <a href="/pkg/math/"><code>math</code> package</a>'s | 
					
						
							|  |  |  | <a href="/pkg/math/#Inf">Inf</a>, | 
					
						
							|  |  |  | <a href="/pkg/math/#NaN">NaN</a>, | 
					
						
							|  |  |  | <a href="/pkg/math/#IsInf">IsInf</a>, and | 
					
						
							|  |  |  | <a href="/pkg/math/#IsNaN">IsNaN</a> | 
					
						
							|  |  |  | functions return and test for those values at run time. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | Implementation restriction: A compiler may implement numeric constants by choosing | 
					
						
							|  |  |  | an internal representation with at least twice as many bits as any machine type; | 
					
						
							|  |  |  | for floating-point values, both the mantissa and exponent must be twice as large. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Types">Types</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | A type determines the set of values and operations specific to values of that | 
					
						
							|  |  |  | type.  A type may be specified by a (possibly qualified) <i>type name</i> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Qualified_identifier">Qualified identifier</a>, §<a href="#Type_declarations">Type declarations</a>) or a <i>type literal</i>, | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | which composes a new type from previously declared types. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | Type      = TypeName | TypeLit | "(" Type ")" . | 
					
						
							|  |  |  | TypeName  = QualifiedIdent. | 
					
						
							|  |  |  | TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType | | 
					
						
							|  |  |  | 	    SliceType | MapType | ChannelType . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | Named instances of the boolean, numeric, and string types are | 
					
						
							|  |  |  | <a href="#Predeclared_identifiers">predeclared</a>. | 
					
						
							|  |  |  | <i>Composite types</i>—array, struct, pointer, function, | 
					
						
							|  |  |  | interface, slice, map, and channel types—may be constructed using | 
					
						
							|  |  |  | type literals. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-06-17 14:31:33 -07:00
										 |  |  | A type may have a <i>method set</i> associated with it | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Interface_types">Interface types</a>, §<a href="#Method_declarations">Method declarations</a>). | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The method set of an <a href="#Interface_types">interface type</a> is its interface. | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | The method set of any other named type <code>T</code> | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | consists of all methods with receiver type <code>T</code>. | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | The method set of the corresponding pointer type <code>*T</code> | 
					
						
							|  |  |  | is the set of all methods with receiver <code>*T</code> or <code>T</code> | 
					
						
							|  |  |  | (that is, it also contains the method set of <code>T</code>). | 
					
						
							|  |  |  | Any other type has an empty method set. | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | In a method set, each method must have a unique name. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The <i>static type</i> (or just <i>type</i>) of a variable is the | 
					
						
							|  |  |  | type defined by its declaration.  Variables of interface type | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | also have a distinct <i>dynamic type</i>, which | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | is the actual type of the value stored in the variable at run-time. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The dynamic type may vary during execution but is always assignment compatible | 
					
						
							|  |  |  | to the static type of the interface variable.  For non-interface | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | types, the dynamic type is always the static type. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-03 14:04:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <h3 id="Boolean_types">Boolean types</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | A <i>boolean type</i> represents the set of Boolean truth values | 
					
						
							|  |  |  | denoted by the predeclared constants <code>true</code> | 
					
						
							|  |  |  | and <code>false</code>. The predeclared boolean type is <code>bool</code>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Numeric_types">Numeric types</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A <i>numeric type</i> represents sets of integer or floating-point values. | 
					
						
							|  |  |  | The predeclared architecture-independent numeric types are: | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | uint8       the set of all unsigned  8-bit integers (0 to 255) | 
					
						
							|  |  |  | uint16      the set of all unsigned 16-bit integers (0 to 65535) | 
					
						
							|  |  |  | uint32      the set of all unsigned 32-bit integers (0 to 4294967295) | 
					
						
							|  |  |  | uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int8        the set of all signed  8-bit integers (-128 to 127) | 
					
						
							|  |  |  | int16       the set of all signed 16-bit integers (-32768 to 32767) | 
					
						
							|  |  |  | int32       the set of all signed 32-bit integers (-2147483648 to 2147483647) | 
					
						
							|  |  |  | int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807) | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | float32     the set of all IEEE-754 32-bit floating-point numbers | 
					
						
							|  |  |  | float64     the set of all IEEE-754 64-bit floating-point numbers | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | complex64   the set of all complex numbers with float32 real and imaginary parts | 
					
						
							|  |  |  | complex128  the set of all complex numbers with float64 real and imaginary parts | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | byte     familiar alias for uint8 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using | 
					
						
							|  |  |  | <a href="http://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | There is also a set of predeclared numeric types with implementation-specific sizes: | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-17 18:11:36 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | uint     either 32 or 64 bits | 
					
						
							|  |  |  | int      either 32 or 64 bits | 
					
						
							|  |  |  | float    either 32 or 64 bits | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | complex  real and imaginary parts have type float | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | To avoid portability issues all numeric types are distinct except | 
					
						
							|  |  |  | <code>byte</code>, which is an alias for <code>uint8</code>. | 
					
						
							|  |  |  | Conversions | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | are required when incompatible numeric types are mixed in an expression | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | or assignment. For instance, <code>int32</code> and <code>int</code> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | are not the same type even though they may have the same size on a | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | particular architecture. | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-04 17:33:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <h3 id="String_types">String types</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A <i>string type</i> represents the set of string values. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | Strings behave like arrays of bytes but are immutable: once created, | 
					
						
							|  |  |  | it is impossible to change the contents of a string. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The predeclared string type is <code>string</code>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The elements of strings have type <code>byte</code> and may be | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | accessed using the usual <a href="#Indexes">indexing operations</a>.  It is | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | illegal to take the address of such an element; if | 
					
						
							|  |  |  | <code>s[i]</code> is the <i>i</i>th byte of a | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | string, <code>&s[i]</code> is invalid.  The length of string | 
					
						
							|  |  |  | <code>s</code> can be discovered using the built-in function | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>len</code>. The length is a compile-time constant if <code>s</code> | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | is a string literal. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-04 17:33:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Array_types">Array types</h3> | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | An array is a numbered sequence of elements of a single | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | type, called the element type. | 
					
						
							|  |  |  | The number of elements is called the length and is never | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | negative. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | ArrayType   = "[" ArrayLength "]" ElementType . | 
					
						
							|  |  |  | ArrayLength = Expression . | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | ElementType = Type . | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | The length is part of the array's type and must be a | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | <a href="#Constant_expressions">constant expression</a> that evaluates to a non-negative | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | integer value.  The length of array <code>a</code> can be discovered | 
					
						
							|  |  |  | using the built-in function <code>len(a)</code>, which is a | 
					
						
							|  |  |  | compile-time constant.  The elements can be indexed by integer | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | indices 0 through the <code>len(a)-1</code> (§<a href="#Indexes">Indexes</a>). | 
					
						
							| 
									
										
										
										
											2009-11-20 15:47:15 -08:00
										 |  |  | Array types are always one-dimensional but may be composed to form | 
					
						
							|  |  |  | multi-dimensional types. | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | [32]byte | 
					
						
							|  |  |  | [2*N] struct { x, y int32 } | 
					
						
							|  |  |  | [1000]*float64 | 
					
						
							| 
									
										
										
										
											2009-11-20 15:47:15 -08:00
										 |  |  | [3][5]int | 
					
						
							|  |  |  | [2][2][2]float64  // same as [2]([2]([2]float64)) | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Slice_types">Slice types</h3> | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A slice is a reference to a contiguous segment of an array and | 
					
						
							|  |  |  | contains a numbered sequence of elements from that array.  A slice | 
					
						
							|  |  |  | type denotes the set of all slices of arrays of its element type. | 
					
						
							|  |  |  | A slice value may be <code>nil</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | SliceType = "[" "]" ElementType . | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Like arrays, slices are indexable and have a length.  The length of a | 
					
						
							|  |  |  | slice <code>s</code> can be discovered by the built-in function | 
					
						
							|  |  |  | <code>len(s)</code>; unlike with arrays it may change during | 
					
						
							|  |  |  | execution.  The elements can be addressed by integer indices 0 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | through <code>len(s)-1</code> (§<a href="#Indexes">Indexes</a>).  The slice index of a | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | given element may be less than the index of the same element in the | 
					
						
							|  |  |  | underlying array. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A slice, once initialized, is always associated with an underlying | 
					
						
							| 
									
										
										
										
											2010-01-09 07:32:26 +11:00
										 |  |  | array that holds its elements.  A slice therefore shares storage | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | with its array and with other slices of the same array; by contrast, | 
					
						
							|  |  |  | distinct arrays always represent distinct storage. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The array underlying a slice may extend past the end of the slice. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | The <i>capacity</i> is a measure of that extent: it is the sum of | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | the length of the slice and the length of the array beyond the slice; | 
					
						
							|  |  |  | a slice of length up to that capacity can be created by `slicing' a new | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | one from the original slice (§<a href="#Slices">Slices</a>). | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | The capacity of a slice <code>a</code> can be discovered using the | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | built-in function <code>cap(a)</code> and the relationship between | 
					
						
							|  |  |  | <code>len()</code> and <code>cap()</code> is: | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | 0 <= len(a) <= cap(a) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The value of an uninitialized slice is <code>nil</code>. | 
					
						
							|  |  |  | The length and capacity of a <code>nil</code> slice | 
					
						
							|  |  |  | are 0. A new, initialized slice value for a given element type <code>T</code> is | 
					
						
							|  |  |  | made using the built-in function <code>make</code>, which takes a slice type | 
					
						
							|  |  |  | and parameters specifying the length and optionally the capacity: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | make([]T, length) | 
					
						
							|  |  |  | make([]T, length, capacity) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The <code>make()</code> call allocates a new, hidden array to which the returned | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | slice value refers. That is, executing | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | make([]T, length, capacity) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | produces the same slice as allocating an array and slicing it, so these two examples | 
					
						
							|  |  |  | result in the same slice: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | make([]int, 50, 100) | 
					
						
							|  |  |  | new([100]int)[0:50] | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 15:47:15 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Like arrays, slices are always one-dimensional but may be composed to construct | 
					
						
							|  |  |  | higher-dimensional objects. | 
					
						
							|  |  |  | With arrays of arrays, the inner arrays are, by construction, always the same length; | 
					
						
							|  |  |  | however with slices of slices (or arrays of slices), the lengths may vary dynamically. | 
					
						
							|  |  |  | Moreover, the inner slices must be allocated individually (with <code>make</code>). | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Struct_types">Struct types</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | A struct is a sequence of named elements, called fields, each of which has a | 
					
						
							|  |  |  | name and a type. Field names may be specified explicitly (IdentifierList) or | 
					
						
							|  |  |  | implicitly (AnonymousField). | 
					
						
							|  |  |  | Within a struct, non-<a href="#Blank_identifier">blank</a> field names must | 
					
						
							|  |  |  | be unique. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | StructType     = "struct" "{" { FieldDecl ";" } "}" . | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | FieldDecl      = (IdentifierList Type | AnonymousField) [ Tag ] . | 
					
						
							|  |  |  | AnonymousField = [ "*" ] TypeName . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Tag            = string_lit . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | // An empty struct. | 
					
						
							|  |  |  | struct {} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | // A struct with 6 fields. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	x, y int | 
					
						
							|  |  |  | 	u float | 
					
						
							|  |  |  | 	_ float  // padding | 
					
						
							|  |  |  | 	A *[]int | 
					
						
							|  |  |  | 	F func() | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | A field declared with a type but no explicit field name is an <i>anonymous field</i>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | Such a field type must be specified as | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | a type name <code>T</code> or as a pointer to a type name <code>*T</code>, | 
					
						
							| 
									
										
										
										
											2009-08-17 11:40:57 -07:00
										 |  |  | and <code>T</code> itself may not be | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | a pointer type. The unqualified type name acts as the field name. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | // A struct with four anonymous fields of type T1, *T2, P.T3 and *P.T4 | 
					
						
							|  |  |  | struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	T1        // field name is T1 | 
					
						
							|  |  |  | 	*T2       // field name is T2 | 
					
						
							|  |  |  | 	P.T3      // field name is T3 | 
					
						
							|  |  |  | 	*P.T4     // field name is T4 | 
					
						
							|  |  |  | 	x, y int  // field names are x and y | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | The following declaration is illegal because field names must be unique | 
					
						
							|  |  |  | in a struct type: | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	T         // conflicts with anonymous field *T and *P.T | 
					
						
							|  |  |  | 	*T        // conflicts with anonymous field T and *P.T | 
					
						
							|  |  |  | 	*P.T      // conflicts with anonymous field T and *T | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | Fields and methods (§<a href="#Method_declarations">Method declarations</a>) of an anonymous field are | 
					
						
							|  |  |  | promoted to be ordinary fields and methods of the struct (§<a href="#Selectors">Selectors</a>). | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | The following rules apply for a struct type named <code>S</code> and | 
					
						
							|  |  |  | a type named <code>T</code>: | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | <ul> | 
					
						
							|  |  |  | 	<li>If <code>S</code> contains an anonymous field <code>T</code>, the | 
					
						
							|  |  |  | 	    method set of <code>S</code> includes the method set of <code>T</code>. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>If <code>S</code> contains an anonymous field <code>*T</code>, the | 
					
						
							|  |  |  | 	    method set of <code>S</code> includes the method set of <code>*T</code> | 
					
						
							|  |  |  | 	    (which itself includes the method set of <code>T</code>). | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>If <code>S</code> contains an anonymous field <code>T</code> or | 
					
						
							|  |  |  | 	    <code>*T</code>, the method set of <code>*S</code> includes the | 
					
						
							|  |  |  | 	    method set of <code>*T</code> (which itself includes the method | 
					
						
							|  |  |  | 	    set of <code>T</code>). | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | </ul> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | A field declaration may be followed by an optional string literal <i>tag</i>, | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | which becomes an attribute for all the fields in the corresponding | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | field declaration. The tags are made | 
					
						
							| 
									
										
										
										
											2009-09-15 11:56:39 -07:00
										 |  |  | visible through a <a href="#Package_unsafe">reflection interface</a> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | but are otherwise ignored. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | // A struct corresponding to the TimeStamp protocol buffer. | 
					
						
							| 
									
										
										
										
											2009-02-24 17:47:45 -08:00
										 |  |  | // The tag strings define the protocol buffer field numbers. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	microsec  uint64 "field 1" | 
					
						
							|  |  |  | 	serverIP6 uint64 "field 2" | 
					
						
							|  |  |  | 	process   string "field 3" | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Pointer_types">Pointer types</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | A pointer type denotes the set of all pointers to variables of a given | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | type, called the <i>base type</i> of the pointer. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | A pointer value may be <code>nil</code>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | PointerType = "*" BaseType . | 
					
						
							|  |  |  | BaseType = Type . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | *int | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | *map[string] *chan int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Function_types">Function types</h3> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | A function type denotes the set of all functions with the same parameter | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | and result types. | 
					
						
							|  |  |  | A function value may be <code>nil</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | FunctionType   = "func" Signature . | 
					
						
							|  |  |  | Signature      = Parameters [ Result ] . | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | Result         = Parameters | Type . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Parameters     = "(" [ ParameterList [ "," ] ] ")" . | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | ParameterList  = ParameterDecl { "," ParameterDecl } . | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | ParameterDecl  = [ IdentifierList ] ( Type | "..." [ Type ] ) . | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | Within a list of parameters or results, the names (IdentifierList) | 
					
						
							|  |  |  | must either all be present or all be absent. If present, each name | 
					
						
							|  |  |  | stands for one item (parameter or result) of the specified type; if absent, each | 
					
						
							|  |  |  | type stands for one item of that type.  Parameter and result | 
					
						
							|  |  |  | lists are always parenthesized except that if there is exactly | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | one unnamed result it may written as an unparenthesized type. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | For the last parameter only, instead of a type one may write | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | <code>...</code> or <code>...  T</code> to indicate that the function | 
					
						
							|  |  |  | may be invoked with zero or more additional arguments.  If the type | 
					
						
							|  |  |  | <code>T</code> is present in the parameter declaration, the additional | 
					
						
							|  |  |  | arguments must all be | 
					
						
							|  |  |  | <a href="#Assignment_compatibility">assignment compatible</a> | 
					
						
							|  |  |  | with type <code>T</code>; otherwise they may be of any type. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func() | 
					
						
							|  |  |  | func(x int) | 
					
						
							|  |  |  | func() int | 
					
						
							|  |  |  | func(string, float, ...) | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | func(prefix string, values ... int) | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(a, b int, z float) bool | 
					
						
							|  |  |  | func(a, b int, z float) (bool) | 
					
						
							|  |  |  | func(a, b int, z float, opt ...) (success bool) | 
					
						
							|  |  |  | func(int, int, float) (float, *[]int) | 
					
						
							|  |  |  | func(n int) func(p *T) | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Interface_types">Interface types</h3> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | An interface type specifies a <a href="#Types">method set</a> called its <i>interface</i>. | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | A variable of interface type can store a value of any type with a method set | 
					
						
							|  |  |  | that is any superset of the interface. Such a type is said to | 
					
						
							|  |  |  | <i>implement the interface</i>. An interface value may be <code>nil</code>. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | InterfaceType      = "interface" "{" { MethodSpec ";" } "}" . | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | MethodSpec         = MethodName Signature | InterfaceTypeName . | 
					
						
							|  |  |  | MethodName         = identifier . | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | InterfaceTypeName  = TypeName . | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | As with all method sets, in an interface type, each method must have a unique name. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | // A simple File interface | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | interface { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Read(b Buffer) bool | 
					
						
							|  |  |  | 	Write(b Buffer) bool | 
					
						
							|  |  |  | 	Close() | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | More than one type may implement an interface. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | For instance, if two types <code>S1</code> and <code>S2</code> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | have the method set | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | func (p T) Read(b Buffer) bool { return ... } | 
					
						
							|  |  |  | func (p T) Write(b Buffer) bool { return ... } | 
					
						
							|  |  |  | func (p T) Close() { ... } | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | (where <code>T</code> stands for either <code>S1</code> or <code>S2</code>) | 
					
						
							|  |  |  | then the <code>File</code> interface is implemented by both <code>S1</code> and | 
					
						
							|  |  |  | <code>S2</code>, regardless of what other methods | 
					
						
							|  |  |  | <code>S1</code> and <code>S2</code> may have or share. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A type implements any interface comprising any subset of its methods | 
					
						
							|  |  |  | and may therefore implement several distinct interfaces. For | 
					
						
							|  |  |  | instance, all types implement the <i>empty interface</i>: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | interface{} | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Similarly, consider this interface specification, | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | which appears within a <a href="#Type_declarations">type declaration</a> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | to define an interface called <code>Lock</code>: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | type Lock interface { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Lock() | 
					
						
							|  |  |  | 	Unlock() | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | If <code>S1</code> and <code>S2</code> also implement | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-07 17:14:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | func (p T) Lock() { ... } | 
					
						
							|  |  |  | func (p T) Unlock() { ... } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | they implement the <code>Lock</code> interface as well | 
					
						
							|  |  |  | as the <code>File</code> interface. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | An interface may contain an interface type name <code>T</code> | 
					
						
							|  |  |  | in place of a method specification. | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | The effect is equivalent to enumerating the methods of <code>T</code> explicitly | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | in the interface. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-29 18:41:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | type ReadWrite interface { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Read(b Buffer) bool | 
					
						
							|  |  |  | 	Write(b Buffer) bool | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | type File interface { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	ReadWrite  // same as enumerating the methods in ReadWrite | 
					
						
							|  |  |  | 	Lock       // same as enumerating the methods in Lock | 
					
						
							|  |  |  | 	Close() | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Map_types">Map types</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A map is an unordered group of elements of one type, called the | 
					
						
							| 
									
										
										
										
											2009-11-15 17:42:27 -08:00
										 |  |  | element type, indexed by a set of unique <i>keys</i> of another type, | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | called the key type. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | A map value may be <code>nil</code>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | MapType     = "map" "[" KeyType "]" ElementType . | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | KeyType     = Type . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | The comparison operators <code>==</code> and <code>!=</code> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Comparison_operators">Comparison operators</a>) must be fully defined for operands of the | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | key type; thus the key type must be a boolean, numeric, string, pointer, function, interface, | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | map, or channel type. If the key type is an interface type, these | 
					
						
							|  |  |  | comparison operators must be defined for the dynamic key values; | 
					
						
							|  |  |  | failure will cause a run-time error. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | map [string] int | 
					
						
							|  |  |  | map [*T] struct { x, y float } | 
					
						
							|  |  |  | map [string] interface {} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The number of elements is called the length and is never negative. | 
					
						
							|  |  |  | The length of a map <code>m</code> can be discovered using the | 
					
						
							|  |  |  | built-in function <code>len(m)</code> and may change during execution. | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Values may be added and removed | 
					
						
							|  |  |  | during execution using special forms of <a href="#Assignments">assignment</a>. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | The value of an uninitialized map is <code>nil</code>. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | A new, empty map value is made using the built-in | 
					
						
							|  |  |  | function <code>make</code>, which takes the map type and an optional | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | capacity hint as arguments: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | make(map[string] int) | 
					
						
							|  |  |  | make(map[string] int, 100) | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The initial capacity does not bound its size: | 
					
						
							|  |  |  | maps grow to accommodate the number of items | 
					
						
							|  |  |  | stored in them. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Channel_types">Channel types</h3> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | A channel provides a mechanism for two concurrently executing functions | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | to synchronize execution and communicate by passing a value of a | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | specified element type. | 
					
						
							| 
									
										
										
										
											2009-06-19 13:03:01 -07:00
										 |  |  | A value of channel type may be <code>nil</code>. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | ChannelType   = Channel | SendChannel | RecvChannel . | 
					
						
							| 
									
										
										
										
											2009-11-15 17:42:27 -08:00
										 |  |  | Channel       = "chan" ElementType . | 
					
						
							|  |  |  | SendChannel   = "chan" "<-" ElementType . | 
					
						
							|  |  |  | RecvChannel   = "<-" "chan" ElementType . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-29 18:41:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-27 09:35:39 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | To avoid a parsing ambiguity in cases such as <code>chan<- chan int</code>, | 
					
						
							|  |  |  | the Channel production's ElementType cannot be a RecvChannel. | 
					
						
							|  |  |  | To construct such a type, parenthesize the RecvChannel first. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | chan<- chan int     // same as chan<- (chan int) | 
					
						
							|  |  |  | chan<- <-chan int   // same as chan<- (<-chan int) | 
					
						
							|  |  |  | <-chan <-chan int   // same as <-chan (<-chan int) | 
					
						
							|  |  |  | chan (<-chan int) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Upon creation, a channel can be used both to send and to receive values. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | By conversion or assignment, a channel may be constrained only to send or | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | to receive. This constraint is called a channel's <i>direction</i>; either | 
					
						
							|  |  |  | <i>send</i>, <i>receive</i>, or <i>bi-directional</i> (unconstrained). | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-29 18:41:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | chan T         // can be used to send and receive values of type T | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | chan<- float   // can only be used to send floats | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <-chan int     // can only be used to receive ints | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-29 18:41:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The value of an uninitialized channel is <code>nil</code>. A new, initialized channel | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | value can be made using the built-in function <code>make</code>, | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | which takes the channel type and an optional capacity as arguments: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | make(chan int, 100) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-29 18:41:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The capacity, in number of elements, sets the size of the buffer in the channel. If the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | capacity is greater than zero, the channel is asynchronous: provided the | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | buffer is not full, sends can succeed without blocking. If the capacity is zero | 
					
						
							|  |  |  | or absent, the communication succeeds only when both a sender and receiver are ready. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-30 15:52:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | A channel may be closed and tested for closure with the built-in functions | 
					
						
							|  |  |  | <a href="#Close_and_closed"><code>close</code> and <code>closed</code></a>. | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <h2 id="Properties_of_types_and_values">Properties of types and values</h2> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | Two types are either <i>identical</i> or <i>different</i>, and they are | 
					
						
							|  |  |  | either <i>compatible</i> or <i>incompatible</i>. | 
					
						
							|  |  |  | Identical types are always compatible, but compatible types need not be identical. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Type_identity_and_compatibility">Type identity and compatibility</h3> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h4 id="Type_identity">Type identity</h4> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | Two named types are identical if their type names originate in the same | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | type declaration (§<a href="#Declarations_and_scope">Declarations and scope</a>). A named and an unnamed type | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | are never identical. Two unnamed types are identical if the corresponding | 
					
						
							|  |  |  | type literals have the same literal structure and corresponding components have | 
					
						
							|  |  |  | identical types. In detail: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two array types are identical if they have identical element types and | 
					
						
							|  |  |  | 	    the same array length.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two slice types are identical if they have identical element types.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two struct types are identical if they have the same sequence of fields, | 
					
						
							|  |  |  | 	    and if corresponding fields have the same names and identical types. | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | 	    Two anonymous fields are considered to have the same name.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two pointer types are identical if they have identical base types.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two function types are identical if they have the same number of parameters | 
					
						
							|  |  |  | 	    and result values and if corresponding parameter and result types are | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | 	    identical. All "..." parameters without a specified type are defined to have | 
					
						
							|  |  |  | 	    identical type.  All "..." parameters with specified identical type | 
					
						
							|  |  |  | 	    <code>T</code> are defined to have identical type. | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	    Parameter and result names are not required to match.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two interface types are identical if they have the same set of methods | 
					
						
							|  |  |  | 	    with the same names and identical function types. The order | 
					
						
							|  |  |  | 	    of the methods is irrelevant.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two map types are identical if they have identical key and value types.</li> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li>Two channel types are identical if they have identical value types and | 
					
						
							|  |  |  | 	    the same direction.</li> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </ul> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h4 id="Type_compatibility">Type compatibility</h4> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | Type compatibility is less stringent than type identity: a named and an unnamed | 
					
						
							|  |  |  | type are compatible if the respective type literals are compatible. | 
					
						
							|  |  |  | In all other respects, the definition of type compatibility is the | 
					
						
							|  |  |  | same as for type identity listed above but with ``compatible'' | 
					
						
							|  |  |  | substituted for ``identical''. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | Given the declarations | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | type ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	T0 []string | 
					
						
							|  |  |  | 	T1 []string | 
					
						
							|  |  |  | 	T2 struct { a, b int } | 
					
						
							|  |  |  | 	T3 struct { a, c int } | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | 	T4 func(int, float) *T0 | 
					
						
							|  |  |  | 	T5 func(x int, y float) *[]string | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | these types are identical: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-24 13:13:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | T0 and T0 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | []int and []int | 
					
						
							|  |  |  | struct { a, b *T5 } and struct { a, b *T5 } | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(x int, y float) *[]string and func(int, float) (result *[]string) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | <code>T0</code> and <code>T1</code> are neither identical nor compatible | 
					
						
							|  |  |  | because they are named types with distinct declarations. | 
					
						
							| 
									
										
										
										
											2009-03-04 14:44:51 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | These types are compatible: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | T0 and T0 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | T0 and []string | 
					
						
							|  |  |  | T3 and struct { a int; c int } | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | T4 and func(x int, y float) *[]string | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-30 14:48:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | <code>T2</code> and <code>struct { a, c int }</code> are incompatible because | 
					
						
							|  |  |  | they have different field names. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Assignment_compatibility">Assignment compatibility</h3> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | A value <code>v</code> of static type <code>V</code> is <i>assignment compatible</i> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | with a type <code>T</code> if one or more of the following conditions applies: | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <ul> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>V</code> is compatible with <code>T</code>. | 
					
						
							| 
									
										
										
										
											2009-06-19 13:03:01 -07:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>T</code> is an interface type and | 
					
						
							|  |  |  | <code>V</code> <a href="#Interface_types">implements</a> <code>T</code>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>V</code> is a pointer to an array and <code>T</code> is a slice type | 
					
						
							|  |  |  | with compatible element type and at least one of <code>V</code> or <code>T</code> is unnamed. | 
					
						
							|  |  |  | After assignment, the slice variable refers to the original array; the elements are not | 
					
						
							|  |  |  | copied. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>V</code> is a bidirectional channel and <code>T</code> is a channel type | 
					
						
							|  |  |  | with compatible element type and at least one of <code>V</code> or <code>T</code> is unnamed. | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </ul> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | If <code>T</code> is a struct type, either all fields of <code>T</code> | 
					
						
							|  |  |  | must be <a href="#Exported_identifiers">exported</a>, or the assignment must be in | 
					
						
							|  |  |  | the same package in which <code>T</code> is declared. | 
					
						
							|  |  |  | In other words, a struct value can be assigned to a struct variable only if | 
					
						
							|  |  |  | every field of the struct may be legally assigned individually by the program. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | An untyped <a href="#Constants">constant</a> <code>v</code> | 
					
						
							|  |  |  | is assignment compatible with type <code>T</code> if <code>v</code> | 
					
						
							|  |  |  | can be represented accurately as a value of type <code>T</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The predeclared identifier <code>nil</code> is assignment compatible with any | 
					
						
							|  |  |  | pointer, function, slice, map, channel, or interface type and | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | represents the <a href="#The_zero_value">zero value</a> for that type. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Any value may be assigned to the <a href="#Blank_identifier">blank identifier</a>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Comparison_compatibility">Comparison compatibility</h3> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Except as noted, values of any type may be compared to other values of | 
					
						
							|  |  |  | <a href="#Type_compatibility">compatible static type</a>. | 
					
						
							|  |  |  | Values of numeric and string type may be compared using the | 
					
						
							|  |  |  | full range of <a href="#Comparison_operators;">comparison operators</a>; | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | booleans may be compared only for equality or inequality. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Values of composite type may be | 
					
						
							|  |  |  | compared for equality or inequality using the <code>==</code> and | 
					
						
							|  |  |  | <code>!=</code> operators, with the following provisos: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <ul> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | Arrays and structs may not be compared to anything. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | A slice value may only be compared explicitly against <code>nil</code>. | 
					
						
							|  |  |  | A slice value is equal to <code>nil</code> if it has been assigned the explicit | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | value <code>nil</code>, if it is uninitialized, or if it has | 
					
						
							|  |  |  | been assigned another slice value equal to <code>nil</code>· | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | An interface value is equal to <code>nil</code> if it has | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | been assigned the explicit value <code>nil</code>, if it is uninitialized, | 
					
						
							|  |  |  | or if it has been assigned another interface value equal to <code>nil</code>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | For types that can be compared to <code>nil</code>, | 
					
						
							|  |  |  | two values of the same type are equal if they both equal <code>nil</code>, | 
					
						
							|  |  |  | unequal if one equals <code>nil</code> and one does not. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | Pointer values are equal if they point to the same location. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | Function values are equal if they refer to the same function. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | Channel and map values are equal if they were created by the same call to <code>make</code> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Making_slices">Making slices</a>, maps, and channels). | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | When comparing two values of channel type, the channel value types | 
					
						
							|  |  |  | must be compatible but the channel direction is ignored. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | Interface values may be compared if they have compatible static types. | 
					
						
							| 
									
										
										
										
											2009-03-02 19:13:40 -08:00
										 |  |  | They will be equal only if they have the same dynamic type and the underlying values are equal. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | </ul> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Blocks">Blocks</h2> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A <i>block</i> is a sequence of declarations and statements within matching | 
					
						
							|  |  |  | brace brackets. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Block = "{" { Statement ";" } "}" . | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | In addition to explicit blocks in the source code, there are implicit blocks: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <ol> | 
					
						
							|  |  |  | 	<li>The <i>universe block</i> encompasses all Go source text.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | 	<li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 	    Go source text for that package.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>Each file has a <i>file block</i> containing all Go source text | 
					
						
							|  |  |  | 	    in that file.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>Each <code>if</code>, <code>for</code>, and <code>switch</code> | 
					
						
							|  |  |  | 	    statement is considered to be in its own implicit block.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | 	<li>Each clause in a <code>switch</code> or <code>select</code> statement | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 	    acts as an implicit block.</li> | 
					
						
							|  |  |  | </ol> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | Blocks nest and influence <a href="#Declarations_and_scope">scoping</a>. | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | <h2 id="Declarations_and_scope">Declarations and scope</h2> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | A declaration binds a non-<a href="#Blank_identifier">blank</a> | 
					
						
							|  |  |  | identifier to a constant, type, variable, function, or package. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | Every identifier in a program must be declared. | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | No identifier may be declared twice in the same block, and | 
					
						
							|  |  |  | no identifier may be declared in both the file and package block. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | Declaration   = ConstDecl | TypeDecl | VarDecl . | 
					
						
							|  |  |  | TopLevelDecl  = Declaration | FunctionDecl | MethodDecl . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | The <i>scope</i> of a declared identifier is the extent of source text in which | 
					
						
							|  |  |  | the identifier denotes the specified constant, type, variable, function, or package. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | Go is lexically scoped using blocks: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <ol> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 	<li>The scope of a predeclared identifier is the universe block.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>The scope of an identifier denoting a constant, type, variable, | 
					
						
							|  |  |  | 	    or function declared at top level (outside any function) is the | 
					
						
							|  |  |  | 	    package block.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>The scope of an imported package identifier is the file block | 
					
						
							|  |  |  | 	    of the file containing the import declaration.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>The scope of an identifier denoting a function parameter or | 
					
						
							|  |  |  | 	    result variable is the function body.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>The scope of a constant or variable identifier declared | 
					
						
							|  |  |  | 	    inside a function begins at the end of the ConstSpec or VarSpec | 
					
						
							|  |  |  | 	    and ends at the end of the innermost containing block.</li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<li>The scope of a type identifier declared inside a function | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | 	    begins at the identifier in the TypeSpec | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 	    and ends at the end of the innermost containing block.</li> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | An identifier declared in a block may be redeclared in an inner block. | 
					
						
							|  |  |  | While the identifier of the inner declaration is in scope, it denotes | 
					
						
							|  |  |  | the entity declared by the inner declaration. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | The <a href="#Package_clause">package clause</a> is not a declaration; the package name | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | does not appear in any scope. Its purpose is to identify the files belonging | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | to the same <a href="#Packages">package</a> and to specify the default package name for import | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | declarations. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Label_scopes">Label scopes</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | Labels are declared by <a href="#Labeled_statements">labeled statements</a> and are | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | used in the <code>break</code>, <code>continue</code>, and <code>goto</code> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | statements (§<a href="#Break_statements">Break statements</a>, §<a href="#Continue_statements">Continue statements</a>, §<a href="#Goto_statements">Goto statements</a>). | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | In contrast to other identifiers, labels are not block scoped and do | 
					
						
							|  |  |  | not conflict with identifiers that are not labels. The scope of a label | 
					
						
							|  |  |  | is the body of the function in which it is declared and excludes | 
					
						
							|  |  |  | the body of any nested function. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Predeclared_identifiers">Predeclared identifiers</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | The following identifiers are implicitly declared in the universe block: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | Basic types: | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 	bool byte float32 float64 int8 int16 int32 int64 | 
					
						
							|  |  |  | 	string uint8 uint16 uint32 uint64 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | Architecture-specific convenience types: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 	float int uint uintptr | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | Constants: | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | 	true false iota | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Zero value: | 
					
						
							|  |  |  | 	nil | 
					
						
							| 
									
										
										
										
											2009-02-11 15:09:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | Functions: | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | 	cap close closed cmplx copy imag len make | 
					
						
							|  |  |  | 	new panic panicln print println real | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-11 15:09:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Exported_identifiers">Exported identifiers</h3> | 
					
						
							| 
									
										
										
										
											2008-10-07 17:14:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | An identifier may be <i>exported</i> to permit access to it from another package | 
					
						
							|  |  |  | using a <a href="#Qualified_identifiers">qualified identifier</a>. An identifier | 
					
						
							|  |  |  | is exported if both: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <ol> | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | 	<li>the first character of the identifier's name is a Unicode upper case letter (Unicode class "Lu"); and | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 	<li>the identifier is declared in the <a href="#Blocks">package block</a> or denotes a field or method of a type | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | 	    declared in that block. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | All other identifiers are not exported. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <h3 id="Blank_identifier">Blank identifier</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The <i>blank identifier</i>, represented by the underscore character <code>_</code>, may be used in a declaration like | 
					
						
							|  |  |  | any other identifier but the declaration does not introduce a new binding. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <h3 id="Constant_declarations">Constant declarations</h3> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A constant declaration binds a list of identifiers (the names of | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | the constants) to the values of a list of <a href="#Constant_expressions">constant expressions</a>. | 
					
						
							|  |  |  | The number of identifiers must be equal | 
					
						
							|  |  |  | to the number of expressions, and the <i>n</i>th identifier on | 
					
						
							|  |  |  | the left is bound to the value of the <i>n</i>th expression on the | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | right. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ConstDecl      = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) . | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | ConstSpec      = IdentifierList [ [ Type ] "=" ExpressionList ] . | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | IdentifierList = identifier { "," identifier } . | 
					
						
							|  |  |  | ExpressionList = Expression { "," Expression } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | If the type is present, all constants take the type specified, and | 
					
						
							|  |  |  | the expressions must be <a href="#Assignment_compatibility">assignment compatible</a> with that type. | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | If the type is omitted, the constants take the | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | individual types of the corresponding expressions. | 
					
						
							|  |  |  | If the expression values are untyped <a href="#Constants">constants</a>, | 
					
						
							|  |  |  | the declared constants remain untyped and the constant identifiers | 
					
						
							|  |  |  | denote the constant values. For instance, if the expression is a | 
					
						
							|  |  |  | floating-point literal, the constant identifier denotes a floating-point | 
					
						
							|  |  |  | constant, even if the literal's fractional part is zero. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | const Pi float64 = 3.14159265358979323846 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | const zero = 0.0             // untyped floating-point constant | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	size int64 = 1024 | 
					
						
							|  |  |  | 	eof = -1             // untyped integer constant | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | const u, v float = 0, 3      // u = 0.0, v = 3.0 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Within a parenthesized <code>const</code> declaration list the | 
					
						
							|  |  |  | expression list may be omitted from any but the first declaration. | 
					
						
							|  |  |  | Such an empty list is equivalent to the textual substitution of the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | first preceding non-empty expression list and its type if any. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | Omitting the list of expressions is therefore equivalent to | 
					
						
							|  |  |  | repeating the previous list.  The number of identifiers must be equal | 
					
						
							|  |  |  | to the number of expressions in the previous list. | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | Together with the <a href="#Iota"><code>iota</code> constant generator</a> | 
					
						
							|  |  |  | this mechanism permits light-weight declaration of sequential values: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Sunday = iota | 
					
						
							|  |  |  | 	Monday | 
					
						
							|  |  |  | 	Tuesday | 
					
						
							|  |  |  | 	Wednesday | 
					
						
							|  |  |  | 	Thursday | 
					
						
							|  |  |  | 	Friday | 
					
						
							|  |  |  | 	Partyday | 
					
						
							|  |  |  | 	numberOfDays  // this constant is not exported | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Iota">Iota</h3> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | Within a constant declaration, the predeclared identifier | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | <code>iota</code> represents successive untyped integer <a href="#Constants"> | 
					
						
							|  |  |  | constants</a>. It is reset to 0 whenever the reserved word <code>const</code> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | appears in the source and increments with each | 
					
						
							|  |  |  | <a href="#Semicolons">semicolon</a>. It can be used to construct a | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | set of related constants: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | const (  // iota is reset to 0 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	c0 = iota  // c0 == 0 | 
					
						
							|  |  |  | 	c1 = iota  // c1 == 1 | 
					
						
							|  |  |  | 	c2 = iota  // c2 == 2 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	a = 1 << iota  // a == 1 (iota has been reset) | 
					
						
							|  |  |  | 	b = 1 << iota  // b == 2 | 
					
						
							|  |  |  | 	c = 1 << iota  // c == 4 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	u       = iota * 42  // u == 0     (untyped integer constant) | 
					
						
							|  |  |  | 	v float = iota * 42  // v == 42.0  (float constant) | 
					
						
							|  |  |  | 	w       = iota * 42  // w == 84    (untyped integer constant) | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | const x = iota  // x == 0 (iota has been reset) | 
					
						
							|  |  |  | const y = iota  // y == 0 (iota has been reset) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | Within an ExpressionList, the value of each <code>iota</code> is the same because | 
					
						
							|  |  |  | it is only incremented at a semicolon: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	bit0, mask0 = 1 << iota, 1 << iota - 1  // bit0 == 1, mask0 == 0 | 
					
						
							|  |  |  | 	bit1, mask1                             // bit1 == 2, mask1 == 1 | 
					
						
							|  |  |  | 	_, _                                    // skips iota == 2 | 
					
						
							|  |  |  | 	bit3, mask3                             // bit3 == 8, mask3 == 7 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | This last example exploits the implicit repetition of the | 
					
						
							|  |  |  | last non-empty expression list. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Type_declarations">Type declarations</h3> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | A type declaration binds an identifier, the <i>type name</i>, to a new type | 
					
						
							|  |  |  | that has the same definition (element, fields, channel direction, etc.) as | 
					
						
							|  |  |  | an existing type.  The new type is | 
					
						
							|  |  |  | <a href="#Properties_of_types_and_values">compatible</a> with, but | 
					
						
							|  |  |  | <a href="#Properties_of_types_and_values">different</a> from, the existing type. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | TypeDecl     = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) . | 
					
						
							| 
									
										
										
										
											2009-08-31 17:57:14 -07:00
										 |  |  | TypeSpec     = identifier Type . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-08-31 17:57:14 -07:00
										 |  |  | type IntArray [16]int | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | type ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Point struct { x, y float } | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 	Polar Point | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | type TreeNode struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	left, right *TreeNode | 
					
						
							|  |  |  | 	value *Comparable | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | type Cipher interface { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	BlockSize() int | 
					
						
							|  |  |  | 	Encrypt(src, dst []byte) | 
					
						
							|  |  |  | 	Decrypt(src, dst []byte) | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | The declared type does not inherit any <a href="#Method_declarations">methods</a> | 
					
						
							|  |  |  | bound to the existing type, but the <a href="#Types">method set</a> | 
					
						
							|  |  |  | of elements of a composite type is not changed: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | // A Mutex is a data type with two methods Lock and Unlock. | 
					
						
							|  |  |  | type Mutex struct         { /* Mutex fields */ } | 
					
						
							|  |  |  | func (m *Mutex) Lock()    { /* Lock implementation */ } | 
					
						
							|  |  |  | func (m *Mutex) Unlock()  { /* Unlock implementation */ } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewMutex has the same composition as Mutex but its method set is empty. | 
					
						
							|  |  |  | type NewMutex Mutex | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | // PrintableMutex's method set contains the methods | 
					
						
							|  |  |  | // Lock and Unlock bound to its anonymous field Mutex. | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | type PrintableMutex struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	Mutex | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A type declaration may be used to define a different boolean, numeric, or string | 
					
						
							|  |  |  | type and attach methods to it: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | type TimeZone int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	EST TimeZone = -(5 + iota) | 
					
						
							|  |  |  | 	CST | 
					
						
							|  |  |  | 	MST | 
					
						
							|  |  |  | 	PST | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tz TimeZone) String() string { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	return fmt.Sprintf("GMT+%dh", tz) | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Variable_declarations">Variable declarations</h3> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A variable declaration creates a variable, binds an identifier to it and | 
					
						
							|  |  |  | gives it a type and optionally an initial value. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | VarDecl     = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) . | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | VarSpec     = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) . | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | var i int | 
					
						
							|  |  |  | var U, V, W float | 
					
						
							|  |  |  | var k = 0 | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | var x, y float = -1, -2 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | var ( | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	i int | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 	u, v, s = 2.0, 3.0, "bar" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | var re, im = complexSqrt(-1) | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var _, found = entries[name]  // map lookup; only interested in "found" | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | If a list of expressions is given, the variables are initialized | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | by assigning the expressions to the variables (§<a href="#Assignments">Assignments</a>) | 
					
						
							|  |  |  | in order; all expressions must be consumed and all variables initialized from them. | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | Otherwise, each variable is initialized to its <a href="#The_zero_value">zero value</a>. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | If the type is present, each variable is given that type. | 
					
						
							|  |  |  | Otherwise, the types are deduced from the assignment | 
					
						
							|  |  |  | of the expression list. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | If the type is absent and the corresponding expression evaluates to an | 
					
						
							|  |  |  | untyped <a href="#Constants">constant</a>, the type of the declared variable | 
					
						
							|  |  |  | is <code>bool</code>, <code>int</code>, <code>float</code>, or <code>string</code> | 
					
						
							|  |  |  | respectively, depending on whether the value is a boolean, integer, | 
					
						
							|  |  |  | floating-point, or string constant: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | var b = true    // t has type bool | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | var i = 0       // i has type int | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | var f = 3.0     // f has type float | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | var s = "OMDB"  // s has type string | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Short_variable_declarations">Short variable declarations</h3> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | A <i>short variable declaration</i> uses the syntax: | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-07-16 20:31:41 -07:00
										 |  |  | ShortVarDecl = IdentifierList ":=" ExpressionList . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | It is a shorthand for a regular variable declaration with | 
					
						
							|  |  |  | initializer expressions but no types: | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | "var" IdentifierList = ExpressionList . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | i, j := 0, 10 | 
					
						
							|  |  |  | f := func() int { return 7 } | 
					
						
							|  |  |  | ch := make(chan int) | 
					
						
							|  |  |  | r, w := os.Pipe(fd)  // os.Pipe() returns two values | 
					
						
							|  |  |  | _, y, _ := coord(p)  // coord() returns three values; only interested in y coordinate | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-19 20:04:15 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | Unlike regular variable declarations, a short variable declaration may redeclare variables provided they | 
					
						
							| 
									
										
										
										
											2009-04-19 20:04:15 -07:00
										 |  |  | were originally declared in the same block with the same type, and at | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | least one of the non-<a href="#Blank_identifier">blank</a> variables is new.  As a consequence, redeclaration | 
					
						
							| 
									
										
										
										
											2009-04-19 20:04:15 -07:00
										 |  |  | can only appear in a multi-variable short declaration. | 
					
						
							|  |  |  | Redeclaration does not introduce a new | 
					
						
							|  |  |  | variable; it just assigns a new value to the original. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | field1, offset := nextField(str, 0) | 
					
						
							|  |  |  | field2, offset := nextField(str, offset)  // redeclares offset | 
					
						
							| 
									
										
										
										
											2009-04-19 20:04:15 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | Short variable declarations may appear only inside functions. | 
					
						
							|  |  |  | In some contexts such as the initializers for <code>if</code>, | 
					
						
							|  |  |  | <code>for</code>, or <code>switch</code> statements, | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | they can be used to declare local temporary variables (§<a href="#Statements">Statements</a>). | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Function_declarations">Function declarations</h3> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | A function declaration binds an identifier to a function (§<a href="#Function_types">Function types</a>). | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | FunctionDecl = "func" identifier Signature [ Body ] . | 
					
						
							|  |  |  | Body         = Block. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | A function declaration may omit the body. Such a declaration provides the | 
					
						
							|  |  |  | signature for a function implemented outside Go, such as an assembly routine. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | func min(x int, y int) int { | 
					
						
							|  |  |  | 	if x < y { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 		return x | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	return y | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func flushICache(begin, end uintptr)  // implemented externally | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Method_declarations">Method declarations</h3> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | A method is a function with a <i>receiver</i>. | 
					
						
							|  |  |  | A method declaration binds an identifier to a method. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | MethodDecl   = "func" Receiver MethodName Signature [ Body ] . | 
					
						
							|  |  |  | Receiver     = "(" [ identifier ] [ "*" ] BaseTypeName ")" . | 
					
						
							| 
									
										
										
										
											2009-09-28 14:10:20 -07:00
										 |  |  | BaseTypeName = identifier . | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | The receiver type must be of the form <code>T</code> or <code>*T</code> where | 
					
						
							|  |  |  | <code>T</code> is a type name. <code>T</code> is called the | 
					
						
							|  |  |  | <i>receiver base type</i> or just <i>base type</i>. | 
					
						
							|  |  |  | The base type must not be a pointer or interface type and must be | 
					
						
							| 
									
										
										
										
											2009-09-02 20:09:25 -07:00
										 |  |  | declared in the same package as the method. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | The method is said to be <i>bound</i> to the base type | 
					
						
							|  |  |  | and is visible only within selectors for that type | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Type_declarations">Type declarations</a>, §<a href="#Selectors">Selectors</a>). | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Given type <code>Point</code>, the declarations | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | func (p *Point) Length() float { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	return Math.sqrt(p.x * p.x + p.y * p.y) | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | func (p *Point) Scale(factor float) { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	p.x = p.x * factor | 
					
						
							|  |  |  | 	p.y = p.y * factor | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | bind the methods <code>Length</code> and <code>Scale</code>, | 
					
						
							|  |  |  | with receiver type <code>*Point</code>, | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | to the base type <code>Point</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | If the receiver's value is not referenced inside the body of the method, | 
					
						
							| 
									
										
										
										
											2009-02-23 19:26:07 -08:00
										 |  |  | its identifier may be omitted in the declaration. The same applies in | 
					
						
							|  |  |  | general to parameters of functions and methods. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The type of a method is the type of a function with the receiver as first | 
					
						
							|  |  |  | argument.  For instance, the method <code>Scale</code> has type | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | (p *Point, factor float) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | However, a function declared this way is not a method. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Expressions">Expressions</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | An expression specifies the computation of a value by applying | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | operators and functions to operands. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Operands">Operands</h3> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | Operands denote the elementary values in an expression. | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | Operand    = Literal | QualifiedIdent | MethodExpr | "(" Expression ")" . | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | Literal    = BasicLit | CompositeLit | FunctionLit . | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | BasicLit   = int_lit | float_lit | imaginary_lit | char_lit | string_lit . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Qualified_identifiers">Qualified identifiers</h3> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | A qualified identifier is a non-<a href="#Blank_identifier">blank</a> identifier qualified by a package name prefix. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-17 18:11:36 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | QualifiedIdent = [ PackageName "." ] identifier . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | A qualified identifier accesses an identifier in a separate package. | 
					
						
							|  |  |  | The identifier must be <a href="#Exported_identifiers">exported</a> by that | 
					
						
							|  |  |  | package, which means that it must begin with a Unicode upper case letter. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | math.Sin | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-11 17:48:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <span class="alert">TODO: Unify this section with Selectors - it's the same syntax.</span> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Composite_literals">Composite literals</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Composite literals construct values for structs, arrays, slices, and maps | 
					
						
							|  |  |  | and create a new value each time they are evaluated. | 
					
						
							|  |  |  | They consist of the type of the value | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | followed by a brace-bound list of composite elements. An element may be | 
					
						
							|  |  |  | a single expression or a key-value pair. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-03 13:37:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | CompositeLit  = LiteralType "{" [ ElementList [ "," ] ] "}" . | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType | | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  |                 SliceType | MapType | TypeName | "(" LiteralType ")" . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ElementList   = Element { "," Element } . | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | Element       = [ Key ":" ] Value . | 
					
						
							| 
									
										
										
										
											2009-11-09 12:35:56 -08:00
										 |  |  | Key           = FieldName | ElementIndex . | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | FieldName     = identifier . | 
					
						
							| 
									
										
										
										
											2009-11-09 12:35:56 -08:00
										 |  |  | ElementIndex  = Expression . | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | Value         = Expression . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-03 13:37:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | The LiteralType must be a struct, array, slice, or map type | 
					
						
							|  |  |  | (the grammar enforces this constraint except when the type is given | 
					
						
							|  |  |  | as a TypeName). | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | The types of the expressions must be <a href="#Assignment_compatibility">assignment compatible</a> with | 
					
						
							| 
									
										
										
										
											2009-03-03 15:40:30 -08:00
										 |  |  | the respective field, element, and key types of the LiteralType; | 
					
						
							|  |  |  | there is no additional conversion. | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | The key is interpreted as a field name for struct literals, | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | an index expression for array and slice literals, and a key for map literals. | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | For map literals, all elements must have a key. It is an error | 
					
						
							|  |  |  | to specify multiple elements with the same field name or | 
					
						
							|  |  |  | constant key value. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | For struct literals the following rules apply: | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2009-11-16 08:58:55 -08:00
										 |  |  | 	<li>A key must be a field name declared in the LiteralType. | 
					
						
							|  |  |  | 	</li> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 	<li>A literal that does not contain any keys must | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | 	    list an element for each struct field in the | 
					
						
							|  |  |  | 	    order in which the fields are declared. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>If any element has a key, every element must have a key. | 
					
						
							|  |  |  | 	</li> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 	<li>A literal that contains keys does not need to | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | 	    have an element for each struct field. Omitted fields | 
					
						
							|  |  |  | 	    get the zero value for that field. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>A literal may omit the element list; such a literal evaluates | 
					
						
							|  |  |  | 		to the zero value for its type. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>It is an error to specify an element for a non-exported | 
					
						
							|  |  |  | 	    field of a struct belonging to a different package. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | </ul> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Given the declarations | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | type Point struct { x, y, z float } | 
					
						
							|  |  |  | type Line struct { p, q Point } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | one may write | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | origin := Point{}                            // zero value for Point | 
					
						
							|  |  |  | line := Line{origin, Point{y: -4, z: 12.3}}  // zero value for line.q.x | 
					
						
							| 
									
										
										
										
											2009-03-18 22:58:36 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 13:29:40 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | For array and slice literals the following rules apply: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | <ul> | 
					
						
							|  |  |  | 	<li>Each element has an associated integer index marking | 
					
						
							|  |  |  | 	    its position in the array. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>An element with a key uses the key as its index; the | 
					
						
							|  |  |  | 	    key must be a constant integer expression. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>An element without a key uses the previous element's index plus one. | 
					
						
							|  |  |  | 	    If the first element has no key, its index is zero. | 
					
						
							|  |  |  | 	</li> | 
					
						
							|  |  |  | </ul> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-18 22:58:36 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | Taking the address of a composite literal (§<a href="#Address_operators">Address operators</a>) | 
					
						
							| 
									
										
										
										
											2009-03-20 17:03:48 -07:00
										 |  |  | generates a unique pointer to an instance of the literal's value. | 
					
						
							| 
									
										
										
										
											2009-03-18 22:58:36 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var pointer *Point = &Point{y: 1000} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | The length of an array literal is the length specified in the LiteralType. | 
					
						
							|  |  |  | If fewer elements than the length are provided in the literal, the missing | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | elements are set to the zero value for the array element type. | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | It is an error to provide elements with index values outside the index range | 
					
						
							|  |  |  | of the array. The notation <code>...</code> specifies an array length equal | 
					
						
							|  |  |  | to the maximum element index plus one. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-07 09:31:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | buffer := [10]string{}               // len(buffer) == 10 | 
					
						
							|  |  |  | intSet := [6]int{1, 2, 3, 5}         // len(intSet) == 6 | 
					
						
							|  |  |  | days := [...]string{"Sat", "Sun"}    // len(days) == 2 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-07 09:31:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A slice literal describes the entire underlying array literal. | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Thus, the length and capacity of a slice literal are the maximum | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | element index plus one. A slice literal has the form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-07 09:31:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-03-02 17:52:52 -08:00
										 |  |  | []T{x1, x2, ... xn} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-07 09:31:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | and is a shortcut for a slice operation applied to an array literal: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-03-02 17:52:52 -08:00
										 |  |  | [n]T{x1, x2, ... xn}[0 : n] | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 15:40:30 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A parsing ambiguity arises when a composite literal using the | 
					
						
							|  |  |  | TypeName form of the LiteralType appears in the condition of an | 
					
						
							|  |  |  | "if", "for", or "switch" statement, because the braces surrounding | 
					
						
							|  |  |  | the expressions in the literal are confused with those introducing | 
					
						
							|  |  |  | a block of statements. To resolve the ambiguity in this rare case, | 
					
						
							|  |  |  | the composite literal must appear within | 
					
						
							|  |  |  | parentheses. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | if x == (T{a,b,c}[i]) { ... } | 
					
						
							|  |  |  | if (x == T{a,b,c}[i]) { ... } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | Examples of valid array, slice, and map literals: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | // list of prime numbers | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | primes := []int{2, 3, 5, 7, 9, 11, 13, 17, 19, 991} | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // vowels[ch] is true if ch is a vowel | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true} | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | // the array [10]float{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1} | 
					
						
							|  |  |  | filter := [10]float{-1, 4: -0.1, -0.1, 9: -1} | 
					
						
							| 
									
										
										
										
											2009-05-22 10:25:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // frequencies in Hz for equal-tempered scale (A4 = 440Hz) | 
					
						
							|  |  |  | noteFrequency := map[string]float{ | 
					
						
							|  |  |  | 	"C0": 16.35, "D0": 18.35, "E0": 20.60, "F0": 21.83, | 
					
						
							|  |  |  | 	"G0": 24.50, "A0": 27.50, "B0": 30.87, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Function_literals">Function literals</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A function literal represents an anonymous function. | 
					
						
							|  |  |  | It consists of a specification of the function type and a function body. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | FunctionLit = FunctionType Body . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(a, b int, z float) bool { return a*b < int(z) } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A function literal can be assigned to a variable or invoked directly. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-08 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | f := func(x, y int) int { return x + y } | 
					
						
							|  |  |  | func(ch chan int) { ch <- ACK } (reply_chan) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-08 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Function literals are <i>closures</i>: they may refer to variables | 
					
						
							| 
									
										
										
										
											2009-02-06 17:01:10 -08:00
										 |  |  | defined in a surrounding function. Those variables are then shared between | 
					
						
							|  |  |  | the surrounding function and the function literal, and they survive as long | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | as they are accessible. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-08 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Primary_expressions">Primary expressions</h3> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | Primary expressions are the operands for unary and binary expressions. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | PrimaryExpr = | 
					
						
							|  |  |  | 	Operand | | 
					
						
							| 
									
										
										
										
											2009-09-16 11:05:14 -07:00
										 |  |  | 	Conversion | | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 	BuiltinCall | | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	PrimaryExpr Selector | | 
					
						
							|  |  |  | 	PrimaryExpr Index | | 
					
						
							|  |  |  | 	PrimaryExpr Slice | | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 	PrimaryExpr TypeAssertion | | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	PrimaryExpr Call . | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | Selector       = "." identifier . | 
					
						
							|  |  |  | Index          = "[" Expression "]" . | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | Slice          = "[" Expression ":" [ Expression ] "]" . | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | TypeAssertion  = "." "(" Type ")" . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Call           = "(" [ ExpressionList [ "," ] ] ")" . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | x | 
					
						
							|  |  |  | 2 | 
					
						
							|  |  |  | (s + ".txt") | 
					
						
							|  |  |  | f(3.1415, true) | 
					
						
							| 
									
										
										
										
											2009-03-02 17:52:52 -08:00
										 |  |  | Point{1, 2} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | m["foo"] | 
					
						
							|  |  |  | s[i : j + 1] | 
					
						
							|  |  |  | obj.color | 
					
						
							|  |  |  | Math.sin | 
					
						
							|  |  |  | f.p[i].x() | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Selectors">Selectors</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | A primary expression of the form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | x.f | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | denotes the field or method <code>f</code> of the value denoted by <code>x</code> | 
					
						
							|  |  |  | (or of <code>*x</code> if | 
					
						
							|  |  |  | <code>x</code> is of pointer type). The identifier <code>f</code> | 
					
						
							|  |  |  | is called the (field or method) | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <i>selector</i>; it must not be the <a href="#Blank_identifier">blank identifier</a>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | The type of the expression is the type of <code>f</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | A selector <code>f</code> may denote a field or method <code>f</code> of | 
					
						
							|  |  |  | a type <code>T</code>, or it may refer | 
					
						
							|  |  |  | to a field or method <code>f</code> of a nested anonymous field of | 
					
						
							|  |  |  | <code>T</code>. | 
					
						
							|  |  |  | The number of anonymous fields traversed | 
					
						
							|  |  |  | to reach <code>f</code> is called its <i>depth</i> in <code>T</code>. | 
					
						
							|  |  |  | The depth of a field or method <code>f</code> | 
					
						
							|  |  |  | declared in <code>T</code> is zero. | 
					
						
							|  |  |  | The depth of a field or method <code>f</code> declared in | 
					
						
							|  |  |  | an anonymous field <code>A</code> in <code>T</code> is the | 
					
						
							|  |  |  | depth of <code>f</code> in <code>A</code> plus one. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | The following rules apply to selectors: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <ol> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | For a value <code>x</code> of type <code>T</code> or <code>*T</code> | 
					
						
							|  |  |  | where <code>T</code> is not an interface type, | 
					
						
							|  |  |  | <code>x.f</code> denotes the field or method at the shallowest depth | 
					
						
							|  |  |  | in <code>T</code> where there | 
					
						
							|  |  |  | is such an <code>f</code>. | 
					
						
							|  |  |  | If there is not exactly one <code>f</code> with shallowest depth, the selector | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | expression is illegal. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | For a variable <code>x</code> of type <code>I</code> or <code>*I</code> | 
					
						
							|  |  |  | where <code>I</code> is an interface type, | 
					
						
							|  |  |  | <code>x.f</code> denotes the actual method with name <code>f</code> of the value assigned | 
					
						
							|  |  |  | to <code>x</code> if there is such a method. | 
					
						
							|  |  |  | If no value or <code>nil</code> was assigned to <code>x</code>, <code>x.f</code> is illegal. | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | In all other cases, <code>x.f</code> is illegal. | 
					
						
							|  |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Selectors automatically dereference pointers. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | If <code>x</code> is of pointer type, <code>x.y</code> | 
					
						
							|  |  |  | is shorthand for <code>(*x).y</code>; if <code>y</code> | 
					
						
							|  |  |  | is also of pointer type, <code>x.y.z</code> is shorthand | 
					
						
							|  |  |  | for <code>(*(*x).y).z</code>, and so on. | 
					
						
							|  |  |  | If <code>*x</code> is of pointer type, dereferencing | 
					
						
							|  |  |  | must be explicit; | 
					
						
							|  |  |  | only one level of automatic dereferencing is provided. | 
					
						
							|  |  |  | For an <code>x</code> of type <code>T</code> containing an | 
					
						
							|  |  |  | anonymous field declared as <code>*A</code>, | 
					
						
							|  |  |  | <code>x.f</code> is a shortcut for <code>(*x.A).f</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | For example, given the declarations: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | type T0 struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	x int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | func (recv *T0) M0() | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | type T1 struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	y int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | func (recv T1) M1() | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | type T2 struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	z int | 
					
						
							|  |  |  | 	T1 | 
					
						
							|  |  |  | 	*T0 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | func (recv *T2) M2() | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var p *T2  // with p != nil and p.T1 != nil | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | one may write: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | p.z         // (*p).z | 
					
						
							|  |  |  | p.y         // ((*p).T1).y | 
					
						
							|  |  |  | p.x         // (*(*p).T0).x | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | p.M2        // (*p).M2 | 
					
						
							|  |  |  | p.M1        // ((*p).T1).M1 | 
					
						
							|  |  |  | p.M0        // ((*p).T0).M0 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <span class="alert"> | 
					
						
							| 
									
										
										
										
											2008-10-23 12:04:45 -07:00
										 |  |  | TODO: Specify what happens to receivers. | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | </span> | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2008-10-07 17:14:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Indexes">Indexes</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | A primary expression of the form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | a[x] | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | denotes the element of the array, slice, string or map <code>a</code> indexed by <code>x</code>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | The value <code>x</code> is called the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | <i>index</i> or <i>map key</i>, respectively. The following | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | rules apply: | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-06-25 14:43:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | For <code>a</code> of type <code>A</code> or <code>*A</code> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | where <code>A</code> is an <a href="#Array_types">array type</a>, | 
					
						
							|  |  |  | or for <code>a</code> of type <code>S</code> where <code>S</code> is a <a href="#Slice_types">slice type</a>: | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | 	<li><code>x</code> must be an integer value and <code>0 <= x < len(a)</code> | 
					
						
							|  |  |  | 	<li><code>a[x]</code> is the array element at index <code>x</code> and the type of | 
					
						
							|  |  |  | 	  <code>a[x]</code> is the element type of <code>A</code> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </ul> | 
					
						
							| 
									
										
										
										
											2009-06-25 14:43:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | For <code>a</code> of type <code>T</code> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | where <code>T</code> is a <a href="#String_types">string type</a>: | 
					
						
							| 
									
										
										
										
											2009-06-25 14:43:55 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | <ul> | 
					
						
							|  |  |  | 	<li><code>x</code> must be an integer value and <code>0 <= x < len(a)</code> | 
					
						
							|  |  |  | 	<li><code>a[x]</code> is the byte at index <code>x</code> and the type of | 
					
						
							|  |  |  | 	  <code>a[x]</code> is <code>byte</code> | 
					
						
							|  |  |  | 	<li><code>a[x]</code> may not be assigned to | 
					
						
							|  |  |  | </ul> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-06-25 14:43:55 -07:00
										 |  |  | For <code>a</code> of type <code>M</code> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | where <code>M</code> is a <a href="#Map_types">map type</a>: | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 	<li><code>x</code>'s type must be compatible with the key type of <code>M</code> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | 	  and the map must contain an entry with key <code>x</code> (but see special forms below) | 
					
						
							|  |  |  | 	<li><code>a[x]</code> is the map value with key <code>x</code> | 
					
						
							|  |  |  | 	  and the type of <code>a[x]</code> is the value type of <code>M</code> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </ul> | 
					
						
							| 
									
										
										
										
											2008-10-09 17:12:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | Otherwise <code>a[x]</code> is illegal.  If the index or key is out of range evaluating | 
					
						
							|  |  |  | an otherwise legal index expression, a run-time exception occurs. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | However, if an index expression on a map <code>a</code> of type <code>map[K] V</code> | 
					
						
							| 
									
										
										
										
											2009-08-22 00:04:04 -07:00
										 |  |  | is used in an assignment or initialization of the form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | r, ok = a[x] | 
					
						
							|  |  |  | r, ok := a[x] | 
					
						
							| 
									
										
										
										
											2009-08-22 00:04:04 -07:00
										 |  |  | var r, ok = a[x] | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | the result of the index expression is a pair of values with types | 
					
						
							| 
									
										
										
										
											2009-11-12 14:10:16 -08:00
										 |  |  | <code>(V, bool)</code>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | If the key is present in the map, | 
					
						
							|  |  |  | the expression returns the pair <code>(a[x], true)</code>; | 
					
						
							|  |  |  | otherwise it returns <code>(Z, false)</code> where <code>Z</code> is | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | the <a href="#The_zero_value">zero value</a> for <code>V</code>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | No run-time exception occurs in this case. | 
					
						
							|  |  |  | The index expression in this construct thus acts like a function call | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | returning a value and a boolean indicating success.  (§<a href="#Assignments">Assignments</a>) | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Similarly, if an assignment to a map has the special form | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-07 17:14:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | a[x] = r, ok | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | and boolean <code>ok</code> has the value <code>false</code>, | 
					
						
							|  |  |  | the entry for key <code>x</code> is deleted from the map; if | 
					
						
							|  |  |  | <code>ok</code> is <code>true</code>, the construct acts like | 
					
						
							|  |  |  | a regular assignment to an element of the map. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Slices">Slices</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | For a string, array, or slice <code>a</code>, the primary expression | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | a[lo : hi] | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | constructs a substring or slice. The index expressions <code>lo</code> and | 
					
						
							|  |  |  | <code>hi</code> select which elements appear in the result. The result has | 
					
						
							|  |  |  | indexes starting at 0 and length equal to | 
					
						
							|  |  |  | <code>hi</code> - <code>lo</code>. | 
					
						
							|  |  |  | After slicing the array <code>a</code> | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | a := [5]int{1, 2, 3, 4, 5} | 
					
						
							|  |  |  | s := a[1:4] | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | the slice <code>s</code> has type <code>[]int</code>, length 3, capacity 4, and elements | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | s[0] == 2 | 
					
						
							|  |  |  | s[1] == 3 | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | s[2] == 4 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | For convenience, the <code>hi</code> expression may be omitted; the notation | 
					
						
							|  |  |  | <code>a[lo :]</code> is shorthand for <code>a[lo : len(a)]</code>. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | For arrays or strings, the indexes | 
					
						
							| 
									
										
										
										
											2009-03-04 20:39:39 -08:00
										 |  |  | <code>lo</code> and <code>hi</code> must satisfy | 
					
						
							|  |  |  | 0 <= <code>lo</code> <= <code>hi</code> <= length; | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | for slices, the upper bound is the capacity rather than the length. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | If the sliced operand is a string or slice, the result of the slice operation | 
					
						
							|  |  |  | is a string or slice of the same type. | 
					
						
							|  |  |  | If the sliced operand is an array, the result of the slice operation is a slice | 
					
						
							|  |  |  | with the same element type as the array. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Type_assertions">Type assertions</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | For an expression <code>x</code> of <a href="#Interface_types">interface type</a> | 
					
						
							|  |  |  | and a type <code>T</code>, the primary expression | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | x.(T) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | asserts that <code>x</code> is not <code>nil</code> | 
					
						
							| 
									
										
										
										
											2009-05-20 18:16:04 -07:00
										 |  |  | and that the value stored in <code>x</code> is of type <code>T</code>. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | The notation <code>x.(T)</code> is called a <i>type assertion</i>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | More precisely, if <code>T</code> is not an interface type, <code>x.(T)</code> asserts | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | that the dynamic type of <code>x</code> is identical to the type <code>T</code> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Type_identity_and_compatibility">Type identity and compatibility</a>). | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | If <code>T</code> is an interface type, <code>x.(T)</code> asserts that the dynamic type | 
					
						
							| 
									
										
										
										
											2010-01-13 12:06:33 +11:00
										 |  |  | of <code>x</code> implements the interface <code>T</code> (§<a href="#Interface_types">Interface types</a>). | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | If the type assertion holds, the value of the expression is the value | 
					
						
							|  |  |  | stored in <code>x</code> and its type is <code>T</code>. If the type assertion is false, a run-time | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | exception occurs. In other words, even though the dynamic type of <code>x</code> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | is known only at run-time, the type of <code>x.(T)</code> is | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | known to be <code>T</code> in a correct program. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-22 00:04:04 -07:00
										 |  |  | If a type assertion is used in an assignment or initialization of the form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | v, ok = x.(T) | 
					
						
							|  |  |  | v, ok := x.(T) | 
					
						
							| 
									
										
										
										
											2009-08-22 00:04:04 -07:00
										 |  |  | var v, ok = x.(T) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-07 13:34:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | the result of the assertion is a pair of values with types <code>(T, bool)</code>. | 
					
						
							|  |  |  | If the assertion holds, the expression returns the pair <code>(x.(T), true)</code>; | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | otherwise, the expression returns <code>(Z, false)</code> where <code>Z</code> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | is the <a href="#The_zero_value">zero value</a> for type <code>T</code>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | No run-time exception occurs in this case. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | The type assertion in this construct thus acts like a function call | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | returning a value and a boolean indicating success.  (§<a href="#Assignments">Assignments</a>) | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-03 15:15:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Calls">Calls</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | Given an expression <code>f</code> of function type | 
					
						
							|  |  |  | <code>F</code>, | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | f(a1, a2, ... an) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | calls <code>f</code> with arguments <code>a1, a2, ... an</code>. | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | Except for one special case, arguments must be single-valued expressions | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | <a href="#Assignment_compatibility">assignment compatible</a> with the parameter types of | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <code>F</code> and are evaluated before the function is called. | 
					
						
							|  |  |  | The type of the expression is the result type | 
					
						
							|  |  |  | of <code>F</code>. | 
					
						
							|  |  |  | A method invocation is similar but the method itself | 
					
						
							|  |  |  | is specified as a selector upon a value of the receiver type for | 
					
						
							|  |  |  | the method. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | math.Atan2(x, y)    // function call | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var pt *Point | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | pt.Scale(3.5)  // method call with receiver pt | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | As a special case, if the return parameters of a function or method | 
					
						
							|  |  |  | <code>g</code> are equal in number and individually assignment | 
					
						
							|  |  |  | compatible with the parameters of another function or method | 
					
						
							|  |  |  | <code>f</code>, then the call <code>f(g(<i>parameters_of_g</i>))</code> | 
					
						
							|  |  |  | will invoke <code>f</code> after binding the return values of | 
					
						
							|  |  |  | <code>g</code> to the parameters of <code>f</code> in order.  The call | 
					
						
							|  |  |  | of <code>f</code> must contain no parameters other than the call of <code>g</code>. | 
					
						
							|  |  |  | If <code>f</code> has a final <code>...</code> parameter, it is | 
					
						
							|  |  |  | assigned the return values of <code>g</code> that remain after | 
					
						
							|  |  |  | assignment of regular parameters. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | func Split(s string, pos int) (string, string) { | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | 	return s[0:pos], s[pos:] | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func Join(s, t string) string { | 
					
						
							|  |  |  | 	return s + t | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if Join(Split(value, len(value)/2)) != value { | 
					
						
							| 
									
										
										
										
											2010-01-25 07:48:31 +11:00
										 |  |  | 	log.Crash("test fails") | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | A method call <code>x.m()</code> is valid if the method set of | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | (the type of) <code>x</code> contains <code>m</code> and the | 
					
						
							|  |  |  | argument list is compatible with the parameter list of <code>m</code>. | 
					
						
							|  |  |  | If <code>x</code> is <a href="#Address_operators">addressable</a> and <code>&x</code>'s method | 
					
						
							| 
									
										
										
										
											2009-05-20 11:02:48 -07:00
										 |  |  | set contains <code>m</code>, <code>x.m()</code> is shorthand | 
					
						
							|  |  |  | for <code>(&x).m()</code>: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var p Point | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | p.Scale(3.5) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | There is no distinct method type and there are no method literals. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Passing_arguments_to_..._parameters">Passing arguments to <code>...</code> parameters</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | When a function <code>f</code> has a <code>...</code> parameter, | 
					
						
							|  |  |  | it is always the last formal parameter. Within calls to <code>f</code>, | 
					
						
							|  |  |  | the arguments before the <code>...</code> are treated normally. | 
					
						
							|  |  |  | After those, an arbitrary number (including zero) of trailing | 
					
						
							|  |  |  | arguments may appear in the call and are bound to the <code>...</code> | 
					
						
							|  |  |  | parameter. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | Within <code>f</code>, a <code>...</code> parameter with no | 
					
						
							|  |  |  | specified type has static type <code>interface{}</code> (the empty | 
					
						
							|  |  |  | interface). For each call, its dynamic type is a structure whose | 
					
						
							|  |  |  | sequential fields are the trailing arguments of the call.  That is, | 
					
						
							|  |  |  | the actual arguments provided for a <code>...</code> parameter are | 
					
						
							|  |  |  | wrapped into a struct that is passed to the function instead of the | 
					
						
							|  |  |  | actual arguments.  Using the <a href="#Package_unsafe">reflection</a> | 
					
						
							|  |  |  | interface, <code>f</code> may unpack the elements of the dynamic | 
					
						
							|  |  |  | type to recover the actual arguments. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Given the function and call | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-05-08 11:21:20 -07:00
										 |  |  | func Fprintf(f io.Writer, format string, args ...) | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Fprintf(os.Stdout, "%s %d", "hello", 23) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Within <code>Fprintf</code>, the dynamic type of <code>args</code> for this | 
					
						
							|  |  |  | call will be, schematically, | 
					
						
							|  |  |  | <code> struct { string; int }</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | If the final parameter of <code>f</code> has type <code>... T</code>, | 
					
						
							|  |  |  | within the function it is equivalent to a parameter of type | 
					
						
							|  |  |  | <code>[]T</code>.  At each call of <code>f</code>, the actual | 
					
						
							|  |  |  | arguments provided for the <code>... T</code> parameter are placed | 
					
						
							|  |  |  | into a new slice of type <code>[]T</code> whose successive elements are | 
					
						
							|  |  |  | the actual arguments.  The length of the slice is therefore the | 
					
						
							|  |  |  | number of arguments bound to the <code>... T</code> parameter and | 
					
						
							|  |  |  | may differ for each call site. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | Given the function and call | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | func Greeting(prefix string, who ... string) | 
					
						
							|  |  |  | Greeting("hello:", "Joe", "Anna", "Eileen") | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Within <code>Greeting</code>, <code>who</code> will have value | 
					
						
							|  |  |  | <code>[]string{"Joe", "Anna", "Eileen")</code> | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | As a special case, if a function passes its own <code>...</code> parameter, | 
					
						
							|  |  |  | with or without specified type, as the argument | 
					
						
							|  |  |  | for a <code>...</code> in a call to another function with a <code>...</code> parameter | 
					
						
							|  |  |  | of identical type, | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | the parameter is not wrapped again but passed directly. In short, a formal <code>...</code> | 
					
						
							| 
									
										
										
										
											2010-01-27 13:14:40 -08:00
										 |  |  | parameter is passed unchanged as an actual <code>...</code> parameter provided the | 
					
						
							|  |  |  | types match. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-11-04 16:46:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Operators">Operators</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | Operators combine operands into expressions. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | Expression = UnaryExpr | Expression binary_op UnaryExpr . | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | UnaryExpr  = PrimaryExpr | unary_op UnaryExpr . | 
					
						
							| 
									
										
										
										
											2008-10-10 12:45:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | binary_op  = log_op | com_op | rel_op | add_op | mul_op . | 
					
						
							|  |  |  | log_op     = "||" | "&&" . | 
					
						
							|  |  |  | com_op     = "<-" . | 
					
						
							|  |  |  | rel_op     = "==" | "!=" | "<" | "<=" | ">" | ">=" . | 
					
						
							|  |  |  | add_op     = "+" | "-" | "|" | "^" . | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | mul_op     = "*" | "/" | "%" | "<<" | ">>" | "&" | "&^" . | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | unary_op   = "+" | "-" | "!" | "^" | "*" | "&" | "<-" . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Comparisons are discussed <a href="#Comparison_operators">elsewhere</a>. | 
					
						
							|  |  |  | For other binary operators, the operand types must be identical | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | (§<a href="#Properties_of_types_and_values">Properties of types and values</a>) | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | unless the operation involves channels, shifts, or untyped <a href="#Constants">constants</a>. | 
					
						
							|  |  |  | For operations involving constants only, see the section on | 
					
						
							|  |  |  | <a href="#Constant_expressions">constant expressions</a>. | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-12 12:26:22 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-28 18:17:24 -07:00
										 |  |  | In a channel send, the first operand is always a channel and the second | 
					
						
							|  |  |  | must be a value <a href="#Assignment_compatibility">assignment compatible</a> | 
					
						
							|  |  |  | with the channel's element type. | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | Except for shift operations, | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | if one operand is an untyped <a href="#Constants">constant</a> | 
					
						
							|  |  |  | and the other operand is not, the constant is <a href="#Conversions">converted</a> | 
					
						
							|  |  |  | to the type of the other operand. | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-07-31 18:05:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | The right operand in a shift operation must have unsigned integer type | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | or be an untyped constant that can be converted to unsigned integer type. | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | If the left operand of a non-constant shift operation is an untyped constant, | 
					
						
							|  |  |  | the type of constant is what it would be if the shift operation were replaced by | 
					
						
							|  |  |  | the left operand alone. | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-20 11:46:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var s uint = 33 | 
					
						
							|  |  |  | var i = 1<<s          // 1 has type int | 
					
						
							|  |  |  | var j = int32(1<<s)   // 1 has type int32; j == 0 | 
					
						
							|  |  |  | var u = uint64(1<<s)  // 1 has type uint64; u == 1<<33 | 
					
						
							|  |  |  | var f = float(1<<s)   // illegal: 1 has type float, cannot shift | 
					
						
							|  |  |  | var g = float(1<<33)  // legal; 1<<33 is a constant shift operation; g == 1<<33 | 
					
						
							| 
									
										
										
										
											2009-08-21 14:18:08 -07:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-26 09:34:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | <h3 id="Operator_precedence">Operator precedence</h3> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-07-09 16:44:13 -07:00
										 |  |  | Unary operators have the highest precedence. | 
					
						
							|  |  |  | As the  <code>++</code> and <code>--</code> operators form | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | statements, not expressions, they fall | 
					
						
							| 
									
										
										
										
											2009-07-09 16:44:13 -07:00
										 |  |  | outside the operator hierarchy. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | As a consequence, statement <code>*p++</code> is the same as <code>(*p)++</code>. | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | There are six precedence levels for binary operators. | 
					
						
							|  |  |  | Multiplication operators bind strongest, followed by addition | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | operators, comparison operators, <code><-</code> (channel send), | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <code>&&</code> (logical and), and finally <code>||</code> (logical or): | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | Precedence    Operator | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  |     6             *  /  %  <<  >>  &  &^ | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  |     5             +  -  |  ^ | 
					
						
							|  |  |  |     4             ==  !=  <  <=  >  >= | 
					
						
							|  |  |  |     3             <- | 
					
						
							|  |  |  |     2             && | 
					
						
							|  |  |  |     1             || | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-10 12:45:44 -07:00
										 |  |  | Binary operators of the same precedence associate from left to right. | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | For instance, <code>x / y * z</code> is the same as <code>(x / y) * z</code>. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | +x | 
					
						
							|  |  |  | 23 + 3*x[i] | 
					
						
							|  |  |  | x <= f() | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | ^a >> b | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | f() || g() | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | x == y+1 && <-chan_ptr > 0 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Arithmetic_operators">Arithmetic operators</h3> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Arithmetic operators apply to numeric values and yield a result of the same | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | type as the first operand. The four standard arithmetic operators (<code>+</code>, | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <code>-</code>,  <code>*</code>, <code>/</code>) apply to integer, | 
					
						
							|  |  |  | floating-point, and complex types; <code>+</code> also applies | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | to strings. All other arithmetic operators apply to integers only. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | +    sum                    integers, floats, complex values, strings | 
					
						
							|  |  |  | -    difference             integers, floats, complex values | 
					
						
							|  |  |  | *    product                integers, floats, complex values | 
					
						
							|  |  |  | /    quotient               integers, floats, complex values | 
					
						
							| 
									
										
										
										
											2009-03-12 15:53:56 -07:00
										 |  |  | %    remainder              integers | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-12 15:53:56 -07:00
										 |  |  | &    bitwise and            integers | 
					
						
							|  |  |  | |    bitwise or             integers | 
					
						
							|  |  |  | ^    bitwise xor            integers | 
					
						
							|  |  |  | &^   bit clear (and not)    integers | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | <<   left shift             integer << unsigned integer | 
					
						
							|  |  |  | >>   right shift            integer >> unsigned integer | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Strings can be concatenated using the <code>+</code> operator | 
					
						
							|  |  |  | or the <code>+=</code> assignment operator: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | s := "hi" + string(c) | 
					
						
							|  |  |  | s += " and good bye" | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | String addition creates a new string by concatenating the operands. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | For integer values, <code>/</code> and <code>%</code> satisfy the following relationship: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | (a / b) * b + a % b == a | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | with <code>(a / b)</code> truncated towards zero. | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | Examples: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  |  x     y     x / y     x % y | 
					
						
							|  |  |  |  5     3       1         2 | 
					
						
							|  |  |  | -5     3      -1        -2 | 
					
						
							|  |  |  |  5    -3      -1         2 | 
					
						
							|  |  |  | -5    -3       1        -2 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | If the dividend is positive and the divisor is a constant power of 2, | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | the division may be replaced by a right shift, and computing the remainder may | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | be replaced by a bitwise "and" operation: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  |  x     x / 4     x % 4     x >> 2     x & 3 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  |  11      2         3         2          3 | 
					
						
							|  |  |  | -11     -2        -3        -3          1 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | The shift operators shift the left operand by the shift count specified by the | 
					
						
							|  |  |  | right operand. They implement arithmetic shifts if the left operand is a signed | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | integer and logical shifts if it is an unsigned integer. The shift count must | 
					
						
							|  |  |  | be an unsigned integer. There is no upper limit on the shift count. Shifts behave | 
					
						
							|  |  |  | as if the left operand is shifted <code>n</code> times by 1 for a shift | 
					
						
							|  |  |  | count of <code>n</code>. | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | As a result, <code>x << 1</code> is the same as <code>x*2</code> | 
					
						
							|  |  |  | and <code>x >> 1</code> is the same as | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | <code>x/2</code> but truncated towards negative infinity. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | For integer operands, the unary operators | 
					
						
							|  |  |  | <code>+</code>, <code>-</code>, and <code>^</code> are defined as | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | follows: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | +x                          is 0 + x | 
					
						
							|  |  |  | -x    negation              is 0 - x | 
					
						
							| 
									
										
										
										
											2009-05-29 16:04:16 -07:00
										 |  |  | ^x    bitwise complement    is m ^ x  with m = "all bits set to 1" for unsigned x | 
					
						
							|  |  |  |                                       and  m = -1 for signed x | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | For floating-point numbers, | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <code>+x</code> is the same as <code>x</code>, | 
					
						
							|  |  |  | while <code>-x</code> is the negation of <code>x</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Integer_overflow">Integer overflow</h3> | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | For unsigned integer values, the operations <code>+</code>, | 
					
						
							|  |  |  | <code>-</code>, <code>*</code>, and <code><<</code> are | 
					
						
							|  |  |  | computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of | 
					
						
							|  |  |  | the unsigned integer's type | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Numeric_types">Numeric types</a>). Loosely speaking, these unsigned integer operations | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | discard high bits upon overflow, and programs may rely on ``wrap around''. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | For signed integers, the operations <code>+</code>, | 
					
						
							|  |  |  | <code>-</code>, <code>*</code>, and <code><<</code> may legally | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | overflow and the resulting value exists and is deterministically defined | 
					
						
							|  |  |  | by the signed integer representation, the operation, and its operands. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | No exception is raised as a result of overflow. A | 
					
						
							| 
									
										
										
										
											2008-12-12 10:30:10 -08:00
										 |  |  | compiler may not optimize code under the assumption that overflow does | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | not occur. For instance, it may not assume that <code>x < x + 1</code> is always true. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Comparison_operators">Comparison operators</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Comparison operators yield a value of type <code>bool</code>. | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | The operators <code>==</code> and <code>!=</code> apply | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | to operands of all types except arrays and structs. | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | All other comparison operators apply only to integer, floating-point | 
					
						
							|  |  |  | and string values. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | ==    equal | 
					
						
							|  |  |  | !=    not equal | 
					
						
							|  |  |  | <     less | 
					
						
							|  |  |  | <=    less or equal | 
					
						
							|  |  |  | >     greater | 
					
						
							|  |  |  | >=    greater or equal | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Operands of numeric type are compared in the usual way. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Operands of string type are compared byte-wise (lexically). | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Operands of boolean type are equal if they are either both <code>true</code> | 
					
						
							|  |  |  | or both <code>false</code>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | The rules for comparison of composite types are described in the | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | section on §<a href="#Comparison_compatibility">Comparison compatibility</a>. | 
					
						
							| 
									
										
										
										
											2009-02-24 15:17:59 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Logical_operators">Logical operators</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Logical operators apply to <a href="#Boolean_types">boolean</a> values | 
					
						
							|  |  |  | and yield a result of the same type as the operands. | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | The right operand is evaluated conditionally. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | &&    conditional and    p && q  is  "if p then q else false" | 
					
						
							|  |  |  | ||    conditional or     p || q  is  "if p then true else q" | 
					
						
							|  |  |  | !     not                !p      is  "not p" | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Address_operators">Address operators</h3> | 
					
						
							| 
									
										
										
										
											2008-09-04 15:17:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | The address-of operator <code>&</code> generates the address of its operand, | 
					
						
							|  |  |  | which must be <i>addressable</i>, | 
					
						
							|  |  |  | that is, either a variable, pointer indirection, array or slice indexing | 
					
						
							|  |  |  | operation, | 
					
						
							|  |  |  | or a field selector of an addressable struct operand. | 
					
						
							|  |  |  | A function result variable is not addressable. | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!--- (<span class="alert">TODO: remove this restriction.</span>) ---> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Given an operand of pointer type, the pointer indirection | 
					
						
							|  |  |  | operator <code>*</code> retrieves the value pointed | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | to by the operand. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | &x | 
					
						
							|  |  |  | &a[f(2)] | 
					
						
							|  |  |  | *p | 
					
						
							|  |  |  | *pf(x) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | <h3 id="Communication_operators">Communication operators</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The term <i>channel</i> means "value of <a href="#Channel_types">channel type</a>". | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The send operation uses the binary operator "<-", which operates on | 
					
						
							|  |  |  | a channel and a value (expression): | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | ch <- 3 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The send operation sends the value on the channel.  Both the channel | 
					
						
							|  |  |  | and the expression are evaluated before communication begins. | 
					
						
							|  |  |  | Communication blocks until the send can proceed, at which point the | 
					
						
							|  |  |  | value is transmitted on the channel. | 
					
						
							|  |  |  | A send on an unbuffered channel can proceed if a receiver is ready. | 
					
						
							|  |  |  | A send on a buffered channel can proceed if there is room in the buffer. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | If the send operation appears in an expression context, the value | 
					
						
							|  |  |  | of the expression is a boolean and the operation is non-blocking. | 
					
						
							|  |  |  | The value of the boolean reports true if the communication succeeded, | 
					
						
							|  |  |  | false if it did not. (The channel and | 
					
						
							|  |  |  | the expression to be sent are evaluated regardless.) | 
					
						
							|  |  |  | These two examples are equivalent: | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-30 14:48:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ok := ch <- 3 | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | if ok { print("sent") } else { print("not sent") } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | if ch <- 3 { print("sent") } else { print("not sent") } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | In other words, if the program tests the value of a send operation, | 
					
						
							|  |  |  | the send is non-blocking and the value of the expression is the | 
					
						
							|  |  |  | success of the operation.  If the program does not test the value, | 
					
						
							|  |  |  | the operation blocks until it succeeds. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The receive operation uses the prefix unary operator "<-". | 
					
						
							|  |  |  | The value of the expression is the value received, whose type | 
					
						
							|  |  |  | is the element type of the channel. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | <-ch | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The expression blocks until a value is available, which then can | 
					
						
							|  |  |  | be assigned to a variable or used like any other expression. | 
					
						
							|  |  |  | If the receive expression does not save the value, the value is | 
					
						
							|  |  |  | discarded. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | v1 := <-ch | 
					
						
							|  |  |  | v2 = <-ch | 
					
						
							|  |  |  | f(<-ch) | 
					
						
							|  |  |  | <-strobe  // wait until clock pulse | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | If a receive expression is used in an assignment or initialization of the form | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | x, ok = <-ch | 
					
						
							|  |  |  | x, ok := <-ch | 
					
						
							|  |  |  | var x, ok = <-ch | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | the receive operation becomes non-blocking. | 
					
						
							|  |  |  | If the operation can proceed, the boolean variable | 
					
						
							|  |  |  | <code>ok</code> will be set to <code>true</code> | 
					
						
							|  |  |  | and the value stored in <code>x</code>; otherwise | 
					
						
							|  |  |  | <code>ok</code> is set | 
					
						
							|  |  |  | to <code>false</code> and <code>x</code> is set to the | 
					
						
							|  |  |  | zero value for its type (§<a href="#The_zero_value">The zero value</a>). | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <span class="alert">TODO: Probably in a separate section, communication semantics | 
					
						
							|  |  |  | need to be presented regarding send, receive, select, and goroutines.</span> | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <h3 id="Method_expressions">Method expressions</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | If <code>M</code> is in the method set of type <code>T</code>, | 
					
						
							|  |  |  | <code>T.M</code> is a function that is callable as a regular function | 
					
						
							|  |  |  | with the same arguments as <code>M</code> prefixed by an additional | 
					
						
							|  |  |  | argument that is the receiver of the method. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 11:01:50 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | MethodExpr    = ReceiverType "." MethodName . | 
					
						
							|  |  |  | ReceiverType  = TypeName | "(" "*" TypeName ")" . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | Consider a struct type <code>T</code> with two methods, | 
					
						
							|  |  |  | <code>Mv</code>, whose receiver is of type <code>T</code>, and | 
					
						
							|  |  |  | <code>Mp</code>, whose receiver is of type <code>*T</code>. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-30 14:48:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | type T struct { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	a int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | func (tv  T) Mv(a int)   int   { return 0 }  // value receiver | 
					
						
							|  |  |  | func (tp *T) Mp(f float) float { return 1 }  // pointer receiver | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var t T | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-30 14:48:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The expression | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | <pre> | 
					
						
							|  |  |  | T.Mv | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | yields a function equivalent to <code>Mv</code> but | 
					
						
							|  |  |  | with an explicit receiver as its first argument; it has signature | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(tv T, a int) int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | That function may be called normally with an explicit receiver, so | 
					
						
							|  |  |  | these three invocations are equivalent: | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | t.Mv(7) | 
					
						
							|  |  |  | T.Mv(t, 7) | 
					
						
							|  |  |  | f := T.Mv; f(t, 7) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | Similarly, the expression | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | (*T).Mp | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | yields a function value representing <code>Mp</code> with signature | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(tp *T, f float) float | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | For a method with a value receiver, one can derive a function | 
					
						
							|  |  |  | with an explicit pointer receiver, so | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | (*T).Mv | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | yields a function value representing <code>Mv</code> with signature | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-26 10:25:56 -08:00
										 |  |  | func(tv *T, a int) int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | Such a function indirects through the receiver to create a value | 
					
						
							|  |  |  | to pass as the receiver to the underlying method; | 
					
						
							|  |  |  | the method does not overwrite the value whose address is passed in | 
					
						
							|  |  |  | the function call. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | The final case, a value-receiver function for a pointer-receiver method, | 
					
						
							|  |  |  | is illegal because pointer-receiver methods are not in the method set | 
					
						
							|  |  |  | of the value type. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Function values derived from methods are called with function call syntax; | 
					
						
							|  |  |  | the receiver is provided as the first argument to the call. | 
					
						
							|  |  |  | That is, given <code>f := T.Mv</code>, <code>f</code> is invoked | 
					
						
							|  |  |  | as <code>f(t, 7)</code> not <code>t.f(7)</code>. | 
					
						
							|  |  |  | To construct a function that binds the receiver, use a | 
					
						
							| 
									
										
										
										
											2009-09-18 11:58:35 -07:00
										 |  |  | <a href="#Function_literals">closure</a>. | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | It is legal to derive a function value from a method of an interface type. | 
					
						
							|  |  |  | The resulting function takes an explicit receiver of that interface type. | 
					
						
							| 
									
										
										
										
											2009-02-26 16:37:23 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <h3 id="Conversions">Conversions</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Conversions are expressions of the form <code>T(x)</code> | 
					
						
							|  |  |  | where <code>T</code> is a type and <code>x</code> is an expression | 
					
						
							|  |  |  | that can be converted to type <code>T</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre class="ebnf"> | 
					
						
							|  |  |  | Conversion = LiteralType "(" Expression ")" . | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | In general, a conversion succeeds if the value of <code>x</code> is | 
					
						
							|  |  |  | <a href="#Assignment_compatibility">assignment compatible</a> with type <code>T</code>, | 
					
						
							|  |  |  | or if the value would be assignment compatible with type <code>T</code> if the | 
					
						
							|  |  |  | value's type, or <code>T</code>, or any of their component types were unnamed. | 
					
						
							|  |  |  | Usually, such a conversion changes the type but not the representation of the value | 
					
						
							|  |  |  | of <code>x</code> and thus has no run-time cost. | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Specific rules apply to conversions where <code>T</code> is a numeric or string type. | 
					
						
							|  |  |  | These conversions may change the representation of a value and incur a run-time cost. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <h4>Conversions between integer types</h4> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | If the value is a signed quantity, it is | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | sign extended to implicit infinite precision; otherwise it is zero | 
					
						
							|  |  |  | extended.  It is then truncated to fit in the result type's size. | 
					
						
							|  |  |  | For example, if <code>x := uint16(0x10F0)</code>, then <code>uint32(int8(x)) == 0xFFFFFFF0</code>. | 
					
						
							|  |  |  | The conversion always yields a valid value; there is no indication of overflow. | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <h4>Conversions involving floating point and complex types</h4> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | <ol> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <li> | 
					
						
							|  |  |  | When converting a floating-point number to an integer, the fraction is discarded | 
					
						
							|  |  |  | (truncation towards zero). | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | A value of complex type may be converted to a different complex type, | 
					
						
							|  |  |  | but there is no conversion between complex and any other type. | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | When converting a number to a floating-point or complex type, | 
					
						
							|  |  |  | the result value is rounded | 
					
						
							|  |  |  | to the precision specified by the destination type. | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | For instance, the value of a variable <code>x</code> of type <code>float32</code> | 
					
						
							|  |  |  | may be stored using additional precision beyond that of an IEEE-754 32-bit number, | 
					
						
							|  |  |  | but float32(x) represents the result of rounding <code>x</code>'s value to | 
					
						
							|  |  |  | 32-bit precision. Similarly, <code>x + 0.1</code> may use more than 32 bits | 
					
						
							|  |  |  | of precision, <code>but float32(x + 0.1)</code> does not. | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | </ol> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | In all conversions involving floating-point or complex values, | 
					
						
							|  |  |  | if the result type cannot represent the value the conversion | 
					
						
							|  |  |  | succeeds but the result value is | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | implementation-dependent. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | <h4>Conversions to and from a string type</h4> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | <ol> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <li> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | Converting a signed or unsigned integer value to a string type yields a | 
					
						
							|  |  |  | string containing the UTF-8 representation of the integer. | 
					
						
							|  |  |  | Negative values are converted to <code>"\uFFFD"</code>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | string('a')  // "a" | 
					
						
							|  |  |  | string(-1)  // "\ufffd" == "\xef\xbf\xbd " | 
					
						
							|  |  |  | string(0xf8)  // "\u00f8" == "ø" == "\xc3\xb8" | 
					
						
							|  |  |  | type MyString string | 
					
						
							|  |  |  | MyString(0x65e5)  // "\u65e5" == "æ—¥" == "\xe6\x97\xa5" | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | </li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <li> | 
					
						
							|  |  |  | Converting a value of type <code>[]byte</code> (or | 
					
						
							|  |  |  | the equivalent <code>[]uint8</code>) to a string type yields a | 
					
						
							|  |  |  | string whose successive bytes are the elements of the slice.  If | 
					
						
							|  |  |  | the slice value is <code>nil</code>, the result is the empty string. | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'})  // "hellø" | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <li> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | Converting a value of type <code>[]int</code> to a string type yields | 
					
						
							|  |  |  | a string that is the concatenation of the individual integers | 
					
						
							|  |  |  | converted to strings.  If the slice value is <code>nil</code>, the | 
					
						
							|  |  |  | result is the empty string. | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | string([]int{0x767d, 0x9d6c, 0x7fd4})  // "\u767d\u9d6c\u7fd4" == "白鵬翔" | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | </li> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <li> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | Converting a value of a string type to <code>[]byte</code> (or <code>[]uint8</code>) | 
					
						
							|  |  |  | yields a slice whose successive elements are the bytes of the string. | 
					
						
							|  |  |  | If the string is empty, the result is <code>[]byte(nil)</code>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | []byte("hellø")  // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'} | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | <li> | 
					
						
							|  |  |  | Converting a value of a string type to <code>[]int</code> yields a | 
					
						
							|  |  |  | slice containing the individual Unicode code points of the string. | 
					
						
							|  |  |  | If the string is empty, the result is <code>[]int(nil)</code>. | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | []int(MyString("白鵬翔"))  // []int{0x767d, 0x9d6c, 0x7fd4} | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | </li> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | There is no linguistic mechanism to convert between pointers and integers. | 
					
						
							|  |  |  | The package <a href="#Package_unsafe"><code>unsafe</code></a> | 
					
						
							|  |  |  | implements this functionality under | 
					
						
							|  |  |  | restricted circumstances. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Constant_expressions">Constant expressions</h3> | 
					
						
							| 
									
										
										
										
											2008-09-19 15:49:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Constant expressions may contain only <a href="#Constants">constant</a> | 
					
						
							|  |  |  | operands and are evaluated at compile-time. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-19 15:49:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Untyped boolean, numeric, and string constants may be used as operands | 
					
						
							|  |  |  | wherever it is legal to use an operand of boolean, numeric, or string type, | 
					
						
							|  |  |  | respectively. Except for shift operations, if the operands of a binary operation | 
					
						
							|  |  |  | are an untyped integer constant and an untyped floating-point constant, | 
					
						
							|  |  |  | the integer constant is converted to an untyped floating-point constant | 
					
						
							|  |  |  | (relevant for <code>/</code> and <code>%</code>). | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | Similarly, | 
					
						
							|  |  |  | untyped integer or floating-point constants may be used as operands | 
					
						
							|  |  |  | wherever it is legal to use an operand of complex type; | 
					
						
							|  |  |  | the integer or floating point constant is converted to a | 
					
						
							|  |  |  | complex constant with a zero imaginary part. | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Applying an operator to untyped constants results in an untyped | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | constant of the same kind (that is, a boolean, integer, floating-point, | 
					
						
							|  |  |  | complex, or string constant), except for | 
					
						
							|  |  |  | <a href="#Comparison_operators">comparison operators</a>, which result in | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | a constant of type <code>bool</code>. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Imaginary literals are untyped complex constants (with zero real part) | 
					
						
							|  |  |  | and may be combined in binary | 
					
						
							|  |  |  | operations with untyped integer and floating-point constants; the | 
					
						
							|  |  |  | result is an untyped complex constant. | 
					
						
							|  |  |  | Complex constants are always constructed from | 
					
						
							|  |  |  | constant expressions involving imaginary | 
					
						
							|  |  |  | literals or constants derived from them, or calls of the | 
					
						
							|  |  |  | <a href="#Built-in_functions">built-in function</a> <code>cmplx</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | const Σ = 1 - 0.707i | 
					
						
							|  |  |  | const Δ = Σ + 2.0e-4 - 1/i | 
					
						
							|  |  |  | const Φ = iota * 1i | 
					
						
							|  |  |  | const iΓ = cmplx(0, Γ) | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | Constant expressions are always evaluated exactly; intermediate values and the | 
					
						
							|  |  |  | constants themselves may require precision significantly larger than supported | 
					
						
							|  |  |  | by any predeclared type in the language. The following are legal declarations: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | const Huge = 1 << 100 | 
					
						
							|  |  |  | const Four int8 = Huge >> 98 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-19 15:49:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The values of <i>typed</i> constants must always be accurately representable as values | 
					
						
							|  |  |  | of the constant type. The following constant expressions are illegal: | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | uint(-1)       // -1 cannot be represented as a uint | 
					
						
							|  |  |  | int(3.14)      // 3.14 cannot be represented as an int | 
					
						
							|  |  |  | int64(Huge)    // 1<<100 cannot be represented as an int64 | 
					
						
							|  |  |  | Four * 300     // 300 cannot be represented as an int8 | 
					
						
							|  |  |  | Four * 100     // 400 cannot be represented as an int8 | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | The mask used by the unary bitwise complement operator <code>^</code> matches | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | the rule for non-constants: the mask is all 1s for unsigned constants | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | and -1 for signed and untyped constants. | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | ^1          // untyped integer constant, equal to -2 | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | uint8(^1)   // error, same as uint8(-2), out of range | 
					
						
							|  |  |  | ^uint8(1)   // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE) | 
					
						
							|  |  |  | int8(^1)    // same as int8(-2) | 
					
						
							| 
									
										
										
										
											2009-05-29 16:04:16 -07:00
										 |  |  | ^int8(1)    // same as -1 ^ int8(1) = -2 | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <span class="alert"> | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | TODO: perhaps ^ should be disallowed on non-uints instead of assuming twos complement. | 
					
						
							|  |  |  | Also it may be possible to make typed constants more like variables, at the cost of fewer | 
					
						
							|  |  |  | overflow etc. errors being caught. | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | </span> | 
					
						
							| 
									
										
										
										
											2009-03-24 19:16:42 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Order_of_evaluation">Order of evaluation</h3> | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | When evaluating the elements of an assignment or expression, | 
					
						
							|  |  |  | all function calls, method calls and | 
					
						
							|  |  |  | communication operations are evaluated in lexical left-to-right | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | order. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-01 17:00:16 -07:00
										 |  |  | For example, in the assignment | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | y[f()], ok = g(h(), i() + x[j()], <-c), k() | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-05-01 17:00:16 -07:00
										 |  |  | the function calls and communication happen in the order | 
					
						
							|  |  |  | <code>f()</code>, <code>h()</code>, <code>i()</code>, <code>j()</code>, | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | <code><-c</code>, <code>g()</code>, and <code>k()</code>. | 
					
						
							| 
									
										
										
										
											2009-05-01 17:00:16 -07:00
										 |  |  | However, the order of those events compared to the evaluation | 
					
						
							|  |  |  | and indexing of <code>x</code> and the evaluation | 
					
						
							|  |  |  | of <code>y</code> is not specified. | 
					
						
							| 
									
										
										
										
											2009-04-14 20:10:49 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Floating-point operations within a single expression are evaluated according to | 
					
						
							|  |  |  | the associativity of the operators.  Explicit parentheses affect the evaluation | 
					
						
							|  |  |  | by overriding the default associativity. | 
					
						
							|  |  |  | In the expression <code>x + (y + z)</code> the addition <code>y + z</code> | 
					
						
							|  |  |  | is performed before adding <code>x</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Statements">Statements</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | Statements control execution. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-16 17:36:52 -07:00
										 |  |  | Statement = | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | 	Declaration | LabeledStmt | SimpleStmt | | 
					
						
							|  |  |  | 	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt | | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | 	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt | | 
					
						
							|  |  |  | 	DeferStmt . | 
					
						
							| 
									
										
										
										
											2008-10-07 17:14:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | SimpleStmt = EmptyStmt | ExpressionStmt | IncDecStmt | Assignment | ShortVarDecl . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-09 20:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Empty_statements">Empty statements</h3> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | The empty statement does nothing. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | EmptyStmt = . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Labeled_statements">Labeled statements</h3> | 
					
						
							| 
									
										
										
										
											2009-03-16 17:36:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | A labeled statement may be the target of a <code>goto</code>, | 
					
						
							|  |  |  | <code>break</code> or <code>continue</code> statement. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | LabeledStmt = Label ":" Statement . | 
					
						
							| 
									
										
										
										
											2009-03-16 17:36:52 -07:00
										 |  |  | Label       = identifier . | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2010-01-25 07:48:31 +11:00
										 |  |  | Error: log.Crash("error encountered") | 
					
						
							| 
									
										
										
										
											2009-03-16 17:36:52 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Expression_statements">Expression statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Function calls, method calls, and channel operations | 
					
						
							|  |  |  | can appear in statement context. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | ExpressionStmt = Expression . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | f(x+y) | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | <-ch | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="IncDec_statements">IncDec statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-09-30 13:02:50 -07:00
										 |  |  | The "++" and "--" statements increment or decrement their operands | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | by the untyped <a href="#Constants">constant</a> <code>1</code>. | 
					
						
							|  |  |  | As with an assignment, the operand must be a variable, pointer indirection, | 
					
						
							|  |  |  | field selector or index expression. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-30 13:02:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | IncDecStmt = Expression ( "++" | "--" ) . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | The following <a href="#Assignments">assignment statements</a> are semantically | 
					
						
							| 
									
										
										
										
											2008-09-30 13:02:50 -07:00
										 |  |  | equivalent: | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-30 13:02:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | IncDec statement    Assignment | 
					
						
							|  |  |  | x++                 x += 1 | 
					
						
							|  |  |  | x--                 x -= 1 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Assignments">Assignments</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | Assignment = ExpressionList assign_op ExpressionList . | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | assign_op = [ add_op | mul_op ] "=" . | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | Each left-hand side operand must be <a href="#Address_operators">addressable</a>, | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | a map index expression, | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | or the <a href="#Blank_identifier">blank identifier</a>. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | x = 1 | 
					
						
							|  |  |  | *p = f() | 
					
						
							|  |  |  | a[i] = 23 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | k = <-ch | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code> | 
					
						
							|  |  |  | <code>y</code> where <i>op</i> is a binary arithmetic operation is equivalent | 
					
						
							|  |  |  | to <code>x</code> <code>=</code> <code>x</code> <i>op</i> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | <code>y</code> but evaluates <code>x</code> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | only once.  The <i>op</i><code>=</code> construct is a single token. | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | In assignment operations, both the left- and right-hand expression lists | 
					
						
							|  |  |  | must contain exactly one single-valued expression. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | a[i] <<= 2 | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | i &^= 1<<n | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A tuple assignment assigns the individual elements of a multi-valued | 
					
						
							|  |  |  | operation to a list of variables.  There are two forms.  In the | 
					
						
							|  |  |  | first, the right hand operand is a single multi-valued expression | 
					
						
							| 
									
										
										
										
											2009-09-08 15:41:14 -07:00
										 |  |  | such as a function evaluation or <a href="#Channel_types">channel</a> or | 
					
						
							|  |  |  | <a href="#Map_types">map</a> operation or a <a href="#Type_assertions">type assertion</a>. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | The number of operands on the left | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | hand side must match the number of values.  For instance, if | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <code>f</code> is a function returning two values, | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | x, y = f() | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | assigns the first value to <code>x</code> and the second to <code>y</code>. | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | The <a href="#Blank_identifier">blank identifier</a> provides a | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | way to ignore values returned by a multi-valued expression: | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <pre> | 
					
						
							|  |  |  | x, _ = f()  // ignore second value returned by f() | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | In the second form, the number of operands on the left must equal the number | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | of expressions on the right, each of which must be single-valued, and the | 
					
						
							|  |  |  | <i>n</i>th expression on the right is assigned to the <i>n</i>th | 
					
						
							|  |  |  | operand on the left. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | The expressions on the right are evaluated before assigning to | 
					
						
							|  |  |  | any of the operands on the left, but otherwise the evaluation | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | order is unspecified beyond <a href="#Order_of_evaluation">the usual rules</a>. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | a, b = b, a  // exchange a and b | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | In assignments, each value must be | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | <a href="#Assignment_compatibility">assignment compatible</a> with the type of the | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | operand to which it is assigned. If an untyped <a href="#Constants">constant</a> | 
					
						
							|  |  |  | is assigned to a variable of interface type, the constant is <a href="#Conversions">converted</a> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | to type <code>bool</code>, <code>int</code>, <code>float</code>, | 
					
						
							|  |  |  | <code>complex</code> or <code>string</code> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | respectively, depending on whether the value is a boolean, integer, floating-point, | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | complex, or string constant. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="If_statements">If statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | "If" statements specify the conditional execution of two branches | 
					
						
							|  |  |  | according to the value of a boolean expression.  If the expression | 
					
						
							|  |  |  | evaluates to true, the "if" branch is executed, otherwise, if | 
					
						
							|  |  |  | present, the "else" branch is executed.  A missing condition | 
					
						
							|  |  |  | is equivalent to <code>true</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | IfStmt    = "if" [ SimpleStmt ";" ] [ Expression ] Block [ "else" Statement ] . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | if x > 0 { | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | The expression may be preceded by a simple statement, which | 
					
						
							|  |  |  | executes before the expression is evaluated. | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | if x := f(); x < y { | 
					
						
							|  |  |  | 	return x | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } else if x > z { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	return z | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } else { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	return y | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Switch_statements">Switch statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | "Switch" statements provide multi-way execution. | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | An expression or type specifier is compared to the "cases" | 
					
						
							|  |  |  | inside the "switch" to determine which branch | 
					
						
							|  |  |  | to execute. | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-03-19 08:39:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | SwitchStmt = ExprSwitchStmt | TypeSwitchStmt . | 
					
						
							| 
									
										
										
										
											2009-03-19 08:39:40 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 17:41:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | There are two forms: expression switches and type switches. | 
					
						
							|  |  |  | In an expression switch, the cases contain expressions that are compared | 
					
						
							|  |  |  | against the value of the switch expression. | 
					
						
							|  |  |  | In a type switch, the cases contain types that are compared against the | 
					
						
							|  |  |  | type of a specially annotated switch expression. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h4 id="Expression_switches">Expression switches</h4> | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | In an expression switch, | 
					
						
							|  |  |  | the switch expression is evaluated and | 
					
						
							|  |  |  | the case expressions, which need not be constants, | 
					
						
							| 
									
										
										
										
											2009-05-01 17:00:16 -07:00
										 |  |  | are evaluated left-to-right and top-to-bottom; the first one that equals the | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | switch expression | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | triggers execution of the statements of the associated case; | 
					
						
							|  |  |  | the other cases are skipped. | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | If no case matches and there is a "default" case, | 
					
						
							|  |  |  | its statements are executed. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | There can be at most one default case and it may appear anywhere in the | 
					
						
							|  |  |  | "switch" statement. | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | A missing switch expression is equivalent to | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | the expression <code>true</code>. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | ExprSwitchStmt = "switch" [ SimpleStmt ";" ] [ Expression ] "{" { ExprCaseClause } "}" . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ExprCaseClause = ExprSwitchCase ":" { Statement ";" } . | 
					
						
							| 
									
										
										
										
											2009-03-19 08:39:40 -07:00
										 |  |  | ExprSwitchCase = "case" ExpressionList | "default" . | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | In a case or default clause, | 
					
						
							|  |  |  | the last statement only may be a "fallthrough" statement | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#Fallthrough_statement">Fallthrough statement</a>) to | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | indicate that control should flow from the end of this clause to | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | the first statement of the next clause. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | Otherwise control flows to the end of the "switch" statement. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | The expression may be preceded by a simple statement, which | 
					
						
							|  |  |  | executes before the expression is evaluated. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | switch tag { | 
					
						
							| 
									
										
										
										
											2009-05-29 15:46:03 -07:00
										 |  |  | default: s3() | 
					
						
							|  |  |  | case 0, 1, 2, 3: s1() | 
					
						
							|  |  |  | case 4, 5, 6, 7: s2() | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | switch x := f() {  // missing switch expression means "true" | 
					
						
							| 
									
										
										
										
											2009-05-29 15:46:03 -07:00
										 |  |  | case x < 0: return -x | 
					
						
							|  |  |  | default: return x | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | switch { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | case x < y: f1() | 
					
						
							|  |  |  | case x < z: f2() | 
					
						
							|  |  |  | case x == 4: f3() | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h4 id="Type_switches">Type switches</h4> | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | A type switch compares types rather than values. It is otherwise similar | 
					
						
							| 
									
										
										
										
											2009-08-27 16:44:17 -07:00
										 |  |  | to an expression switch. It is marked by a special switch expression that | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | has the form of a <a href="#Type_assertions">type assertion</a> | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | using the reserved word <code>type</code> rather than an actual type. | 
					
						
							|  |  |  | Cases then match literal types against the dynamic type of the expression | 
					
						
							| 
									
										
										
										
											2009-03-30 16:08:41 -07:00
										 |  |  | in the type assertion. | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-14 17:39:17 -07:00
										 |  |  | TypeSwitchStmt  = "switch" [ SimpleStmt ";" ] TypeSwitchGuard "{" { TypeCaseClause } "}" . | 
					
						
							| 
									
										
										
										
											2009-12-23 13:48:44 -08:00
										 |  |  | TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | TypeCaseClause  = TypeSwitchCase ":" { Statement ";" } . | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | TypeSwitchCase  = "case" TypeList | "default" . | 
					
						
							|  |  |  | TypeList        = Type { "," Type } . | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | The TypeSwitchGuard may include a | 
					
						
							|  |  |  | <a href="#Short_variable_declarations">short variable declaration</a>. | 
					
						
							|  |  |  | When that form is used, the variable is declared in each clause. | 
					
						
							|  |  |  | In clauses with a case listing exactly one type, the variable | 
					
						
							|  |  |  | has that type; otherwise, the variable has the type of the expression | 
					
						
							|  |  |  | in the TypeSwitchGuard. | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | The type in a case may be <code>nil</code> | 
					
						
							|  |  |  | (§<a href="#Predeclared_identifiers">Predeclared identifiers</a>); | 
					
						
							|  |  |  | that case is used when the expression in the TypeSwitchGuard | 
					
						
							| 
									
										
										
										
											2009-08-27 16:44:17 -07:00
										 |  |  | is a <code>nil</code> interface value. | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | Given an expression <code>x</code> of type <code>interface{}</code>, | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | the following type switch: | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | switch i := x.(type) { | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | case nil: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printString("x is nil") | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | case int: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printInt(i)  // i is an int | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | case float: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printFloat(i)  // i is a float | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | case func(int) float: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printFunction(i)  // i is a function | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | case bool, string: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printString("type is bool or string")  // i is an interface{} | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | default: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printString("don't know the type") | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | could be rewritten: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | v := x  // x is evaluated exactly once | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | if v == nil { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printString("x is nil") | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | } else if i, is_int := v.(int); is_int { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printInt(i)  // i is an int | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | } else if i, is_float := v.(float); is_float { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printFloat(i)  // i is a float | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | } else if i, is_func := v.(func(int) float); is_func { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	printFunction(i)  // i is a function | 
					
						
							| 
									
										
										
										
											2009-03-18 19:23:59 -07:00
										 |  |  | } else { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	i1, is_bool := v.(bool) | 
					
						
							|  |  |  | 	i2, is_string := v.(string) | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | 	if is_bool || is_string { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 		i := v | 
					
						
							|  |  |  | 		printString("type is bool or string")  // i is an interface{} | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 		i := v | 
					
						
							|  |  |  | 		printString("don't know the type")  // i is an interface{} | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-17 16:48:35 -07:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 17:30:55 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | The type switch guard may be preceded by a simple statement, which | 
					
						
							|  |  |  | executes before the guard is evaluated. | 
					
						
							| 
									
										
										
										
											2009-08-27 16:44:17 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-27 14:22:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The "fallthrough" statement is not permitted in a type switch. | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="For_statements">For statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "for" statement specifies repeated execution of a block. The iteration is | 
					
						
							|  |  |  | controlled by a condition, a "for" clause, or a "range" clause. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | ForStmt = "for" [ Condition | ForClause | RangeClause ] Block . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | Condition = Expression . | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | In its simplest form, a "for" statement specifies the repeated execution of | 
					
						
							|  |  |  | a block as long as a boolean condition evaluates to true. | 
					
						
							|  |  |  | The condition is evaluated before each iteration. | 
					
						
							|  |  |  | If the condition is absent, it is equivalent to <code>true</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | for a < b { | 
					
						
							|  |  |  | 	a *= 2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | A "for" statement with a ForClause is also controlled by its condition, but | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | additionally it may specify an <i>init</i> | 
					
						
							|  |  |  | and a <i>post</i> statement, such as an assignment, | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | an increment or decrement statement. The init statement may be a | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | <a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] . | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | InitStmt = SimpleStmt . | 
					
						
							|  |  |  | PostStmt = SimpleStmt . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | for i := 0; i < 10; i++ { | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	f(i) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | If non-empty, the init statement is executed once before evaluating the | 
					
						
							|  |  |  | condition for the first iteration; | 
					
						
							|  |  |  | the post statement is executed after each execution of the block (and | 
					
						
							|  |  |  | only if the block was executed). | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | Any element of the ForClause may be empty but the | 
					
						
							|  |  |  | <a href="#Semicolons">semicolons</a> are | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | required unless there is only a condition. | 
					
						
							|  |  |  | If the condition is absent, it is equivalent to <code>true</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | for cond { S() }    is the same as    for ; cond ; { S() } | 
					
						
							|  |  |  | for      { S() }    is the same as    for true     { S() } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "for" statement with a "range" clause | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | iterates through all entries of an array, slice, string or map, | 
					
						
							|  |  |  | or values received on a channel. | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | For each entry it first assigns the current index or key to an iteration | 
					
						
							|  |  |  | variable - or the current (index, element) or (key, value) pair to a pair | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | of iteration variables - and then executes the block. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-04-15 20:51:17 -07:00
										 |  |  | RangeClause = ExpressionList ( "=" | ":=" ) "range" Expression . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | The type of the right-hand expression in the "range" clause must be an | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | array, slice, string or map, or a pointer to an array; | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | or it may be a channel. | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | Except for channels, | 
					
						
							| 
									
										
										
										
											2009-04-15 20:51:17 -07:00
										 |  |  | the identifier list must contain one or two expressions | 
					
						
							|  |  |  | (as in assignments, these must be a | 
					
						
							|  |  |  | variable, pointer indirection, field selector, or index expression) | 
					
						
							|  |  |  | denoting the | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | iteration variables. On each iteration, | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | the first variable is set to the string, array or slice index or | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | map key, and the second variable, if present, is set to the corresponding | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | string or array element or map value. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | The types of the array or slice index (always <code>int</code>) | 
					
						
							|  |  |  | and element, or of the map key and value respectively, | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | must be <a href="#Assignment_compatibility">assignment compatible</a> with | 
					
						
							| 
									
										
										
										
											2010-01-13 12:50:45 -08:00
										 |  |  | the type of the iteration variables.  The expression on the right hand | 
					
						
							|  |  |  | side is evaluated once before beginning the loop.  At each iteration | 
					
						
							|  |  |  | of the loop, the values produced by the range clause are assigned to | 
					
						
							|  |  |  | the left hand side as in an <a href="#Assignments">assignment | 
					
						
							|  |  |  | statement</a>.  Function calls on the left hand side will be evaluated | 
					
						
							|  |  |  | exactly once per iteration. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-02-17 11:26:09 +11:00
										 |  |  | For a value of a string type, the "range" clause iterates over the Unicode code points | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | in the string.  On successive iterations, the index variable will be the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | index of the first byte of successive UTF-8-encoded code points in the string, and | 
					
						
							| 
									
										
										
										
											2009-04-15 20:28:25 -07:00
										 |  |  | the second variable, of type <code>int</code>, will be the value of | 
					
						
							|  |  |  | the corresponding code point.  If the iteration encounters an invalid | 
					
						
							|  |  |  | UTF-8 sequence, the second variable will be <code>0xFFFD</code>, | 
					
						
							|  |  |  | the Unicode replacement character, and the next iteration will advance | 
					
						
							|  |  |  | a single byte in the string. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | For channels, the identifier list must contain one identifier. | 
					
						
							| 
									
										
										
										
											2009-04-29 11:45:08 -07:00
										 |  |  | The iteration receives values sent on the channel until the channel is closed; | 
					
						
							| 
									
										
										
										
											2009-03-24 17:40:47 -07:00
										 |  |  | it does not process the zero value sent before the channel is closed. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | The iteration variables may be declared by the "range" clause (":="), in which | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | case their scope ends at the end of the "for" statement (§<a href="#Declarations_and">Declarations and</a> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | scope rules). In this case their types are set to | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <code>int</code> and the array element type, or the map key and value types, respectively. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | If the iteration variables are declared outside the "for" statement, | 
					
						
							|  |  |  | after execution their values will be those of the last iteration. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var a [10]string | 
					
						
							|  |  |  | m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | for i, s := range a { | 
					
						
							|  |  |  | 	// type of i is int | 
					
						
							|  |  |  | 	// type of s is string | 
					
						
							|  |  |  | 	// s == a[i] | 
					
						
							|  |  |  | 	g(i, s) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var key string | 
					
						
							|  |  |  | var val interface {}  // value type of m is assignment compatible with val | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | for key, val = range m { | 
					
						
							|  |  |  | 	h(key, val) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | // key == last map key encountered in iteration | 
					
						
							|  |  |  | // val == map[key] | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-12-16 11:38:56 -08:00
										 |  |  | If map entries that have not yet been processed are deleted during iteration, | 
					
						
							|  |  |  | they will not be processed. If map entries are inserted during iteration, the | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | behavior is implementation-dependent, but each entry will be processed at most once. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Go_statements">Go statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | A "go" statement starts the execution of a function or method call | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | as an independent concurrent thread of control, or <i>goroutine</i>, | 
					
						
							|  |  |  | within the same address space. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | GoStmt = "go" Expression . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The expression must be a call, and | 
					
						
							|  |  |  | unlike with a regular call, program execution does not wait | 
					
						
							| 
									
										
										
										
											2008-09-26 13:38:38 -07:00
										 |  |  | for the invoked function to complete. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | go Server() | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | go func(ch chan<- bool) { for { sleep(10); ch <- true; }} (c) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Select_statements">Select statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "select" statement chooses which of a set of possible communications | 
					
						
							|  |  |  | will proceed.  It looks similar to a "switch" statement but with the | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | cases all referring to communication operations. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | SelectStmt = "select" "{" { CommClause } "}" . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | CommClause = CommCase ":" { Statement ";" } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | CommCase = "case" ( SendExpr | RecvExpr) | "default" . | 
					
						
							|  |  |  | SendExpr =  Expression "<-" Expression . | 
					
						
							|  |  |  | RecvExpr =  [ Expression ( "=" | ":=" ) ] "<-" Expression . | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | For all the send and receive expressions in the "select" | 
					
						
							| 
									
										
										
										
											2009-09-16 11:49:35 -07:00
										 |  |  | statement, the channel expressions are evaluated, along with | 
					
						
							|  |  |  | any expressions that appear on the right hand side of send expressions, | 
					
						
							|  |  |  | in top-to-bottom order. | 
					
						
							|  |  |  | If any of the resulting operations can proceed, one is | 
					
						
							| 
									
										
										
										
											2008-10-03 11:18:45 -07:00
										 |  |  | chosen and the corresponding communication and statements are | 
					
						
							|  |  |  | evaluated.  Otherwise, if there is a default case, that executes; | 
					
						
							| 
									
										
										
										
											2008-10-02 10:37:12 -07:00
										 |  |  | if not, the statement blocks until one of the communications can | 
					
						
							| 
									
										
										
										
											2008-10-03 11:18:45 -07:00
										 |  |  | complete.  The channels and send expressions are not re-evaluated. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | A channel pointer may be <code>nil</code>, | 
					
						
							|  |  |  | which is equivalent to that case not | 
					
						
							|  |  |  | being present in the select statement | 
					
						
							|  |  |  | except, if a send, its expression is still evaluated. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-10-03 11:18:45 -07:00
										 |  |  | Since all the channels and send expressions are evaluated, any side | 
					
						
							|  |  |  | effects in that evaluation will occur for all the communications | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | in the "select" statement. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | If multiple cases can proceed, a uniform fair choice is made to decide | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | which single communication will execute. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-27 16:45:42 -07:00
										 |  |  | The receive case may declare a new variable using a | 
					
						
							|  |  |  | <a href="#Short_variable_declarations">short variable declaration</a>. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-17 13:57:11 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var c, c1, c2 chan int | 
					
						
							|  |  |  | var i1, i2 int | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | select { | 
					
						
							|  |  |  | case i1 = <-c1: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	print("received ", i1, " from c1\n") | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | case c2 <- i2: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	print("sent ", i2, " to c2\n") | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | default: | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	print("no communication\n") | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for {  // send random sequence of bits to c | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 	select { | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	case c <- 0:  // note: no statement, no fallthrough, no folding of cases | 
					
						
							|  |  |  | 	case c <- 1: | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Return_statements">Return statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "return" statement terminates execution of the containing function | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | and optionally provides a result value or values to the caller. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | ReturnStmt = "return" [ ExpressionList ] . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | In a function without a result type, a "return" statement must not | 
					
						
							|  |  |  | specify any result values. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | func no_result() { | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | 	return | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | There are three ways to return values from a function with a result | 
					
						
							|  |  |  | type: | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | <ol> | 
					
						
							|  |  |  | 	<li>The return value or values may be explicitly listed | 
					
						
							|  |  |  | 		in the "return" statement. Each expression must be single-valued | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | 		and <a href="#Assignment_compatibility">assignment compatible</a> | 
					
						
							|  |  |  | 		with the type of the corresponding element of the function's | 
					
						
							|  |  |  | 		result type. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | func simple_f() int { | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | 	return 2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func complex_f1() (re float, im float) { | 
					
						
							|  |  |  | 	return -7.0, -4.0 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>The expression list in the "return" statement may be a single | 
					
						
							|  |  |  | 		call to a multi-valued function. The effect is as if each value | 
					
						
							|  |  |  | 		returned from that function were assigned to a temporary | 
					
						
							|  |  |  | 		variable with the type of the respective value, followed by a | 
					
						
							|  |  |  | 		"return" statement listing these variables, at which point the | 
					
						
							|  |  |  | 		rules of the previous case apply. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | func complex_f2() (re float, im float) { | 
					
						
							|  |  |  | 	return complex_f1() | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | 	</li> | 
					
						
							|  |  |  | 	<li>The expression list may be empty if the functions's result | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | 		type specifies names for its result parameters (§<a href="#Function_Types">Function Types</a>). | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | 		The result parameters act as ordinary local variables that are | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | 		initialized to the zero values for their type (§<a href="#The_zero_value">The zero value</a>) | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | 		and the function may assign values to them as necessary. | 
					
						
							|  |  |  | 		The "return" statement returns the values of these variables. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | func complex_f3() (re float, im float) { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	re = 7.0 | 
					
						
							|  |  |  | 	im = 4.0 | 
					
						
							|  |  |  | 	return | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | 	</li> | 
					
						
							|  |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <span class="alert"> | 
					
						
							| 
									
										
										
										
											2009-08-07 17:05:41 -07:00
										 |  |  | TODO: Define when return is required.<br /> | 
					
						
							|  |  |  | TODO: Language about result parameters needs to go into a section on | 
					
						
							|  |  |  |       function/method invocation<br /> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | </span> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Break_statements">Break statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "break" statement terminates execution of the innermost | 
					
						
							|  |  |  | "for", "switch" or "select" statement. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | BreakStmt = "break" [ Label ] . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | If there is a label, it must be that of an enclosing | 
					
						
							|  |  |  | "for", "switch" or "select" statement, and that is the one whose execution | 
					
						
							|  |  |  | terminates | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#For_statements">For statements</a>, §<a href="#Switch_statements">Switch statements</a>, §<a href="#Select_statements">Select statements</a>). | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | L: for i < n { | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	switch i { | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | 		case 5: break L | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Continue_statements">Continue statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "continue" statement begins the next iteration of the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | innermost "for" loop at its post statement (§<a href="#For_statements">For statements</a>). | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ContinueStmt = "continue" [ Label ] . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The optional label is analogous to that of a "break" statement. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Goto_statements">Goto statements</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "goto" statement transfers control to the statement with the corresponding label. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | GotoStmt = "goto" Label . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | goto Error | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Executing the "goto" statement must not cause any variables to come into | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | scope that were not already in scope at the point of the goto.  For | 
					
						
							|  |  |  | instance, this example: | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | goto L  // BAD | 
					
						
							|  |  |  | v := 3 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | L: | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | is erroneous because the jump to label <code>L</code> skips | 
					
						
							|  |  |  | the creation of <code>v</code>. | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | <!---
 | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | (<span class="alert">TODO: Eliminate in favor of used and not set errors?</span>) | 
					
						
							| 
									
										
										
										
											2009-11-09 16:09:57 -08:00
										 |  |  | ---> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Fallthrough_statements">Fallthrough statements</h3> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "fallthrough" statement transfers control to the first statement of the | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | next case clause in a expression "switch" statement (§<a href="#Expression_switches">Expression switches</a>). It may | 
					
						
							| 
									
										
										
										
											2009-03-19 08:39:40 -07:00
										 |  |  | be used only as the final non-empty statement in a case or default clause in an | 
					
						
							|  |  |  | expression "switch" statement. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | FallthroughStmt = "fallthrough" . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-08 17:05:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Defer_statements">Defer statements</h3> | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A "defer" statement invokes a function whose execution is deferred to the moment | 
					
						
							|  |  |  | the surrounding function returns. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-03-24 17:45:53 -07:00
										 |  |  | DeferStmt = "defer" Expression . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The expression must be a function or method call. | 
					
						
							|  |  |  | Each time the "defer" statement | 
					
						
							| 
									
										
										
										
											2009-01-27 14:51:24 -08:00
										 |  |  | executes, the parameters to the function call are evaluated and saved anew but the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | function is not invoked. | 
					
						
							|  |  |  | Deferred function calls are executed in LIFO order | 
					
						
							|  |  |  | immediately before the surrounding function returns, | 
					
						
							|  |  |  | but after the return values, if any, have been evaluated. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | lock(l) | 
					
						
							|  |  |  | defer unlock(l)  // unlocking happens before surrounding function returns | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | // prints 3 2 1 0 before surrounding function returns | 
					
						
							|  |  |  | for i := 0; i <= 3; i++ { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	defer fmt.Print(i) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-27 09:29:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <h2 id="Built-in_functions">Built-in functions</h2> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | Built-in functions are | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <a href="#Predeclared_identifiers">predeclared</a>. | 
					
						
							|  |  |  | They are called like any other function but some of them | 
					
						
							|  |  |  | accept a type instead of an expression as the first argument. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-04 10:23:12 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The built-in functions do not have standard Go types, | 
					
						
							|  |  |  | so they can only appear in <a href="#Calls">call expressions</a>; | 
					
						
							|  |  |  | they cannot be used as function values. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							|  |  |  | BuiltinCall = identifier "(" [ BuiltinArgs ] ")" . | 
					
						
							|  |  |  | BuiltinArgs = Type [ "," ExpressionList ] | ExpressionList . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-10 13:00:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <h3 id="Close_and_closed">Close and closed</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | For a channel <code>c</code>, the predefined function <code>close(c)</code> | 
					
						
							|  |  |  | marks the channel as unable to accept more | 
					
						
							|  |  |  | values through a send operation.  After any previously | 
					
						
							|  |  |  | sent values have been received, receive operations will return | 
					
						
							|  |  |  | the zero value for the channel's type.  After at least one such zero value has been | 
					
						
							|  |  |  | received, <code>closed(c)</code> returns true. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <h3 id="Length_and_capacity">Length and capacity</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | The built-in functions <code>len</code> and <code>cap</code> take arguments | 
					
						
							|  |  |  | of various types and return a result of type <code>int</code>. | 
					
						
							|  |  |  | The implementation guarantees that the result always fits into an <code>int</code>. | 
					
						
							| 
									
										
										
										
											2009-09-16 11:05:14 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | Call      Argument type        Result | 
					
						
							| 
									
										
										
										
											2009-09-16 11:05:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | len(s)    string type          string length in bytes | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  |           [n]T, *[n]T          array length (== constant n) | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  |           []T                  slice length | 
					
						
							|  |  |  |           map[K]T              map length (number of defined keys) | 
					
						
							|  |  |  |           chan T               number of elements queued in channel buffer | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-01 16:15:53 -08:00
										 |  |  | cap(s)    [n]T, *[n]T          array length (== constant n) | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  |           []T                  slice capacity | 
					
						
							|  |  |  |           chan T               channel buffer capacity | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | The capacity of a slice is the number of elements for which there is | 
					
						
							|  |  |  | space allocated in the underlying array. | 
					
						
							|  |  |  | At any time the following relationship holds: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 0 <= len(s) <= cap(s) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Allocation">Allocation</h3> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The built-in function <code>new</code> takes a type <code>T</code> and | 
					
						
							|  |  |  | returns a value of type <code>*T</code>. | 
					
						
							| 
									
										
										
										
											2009-01-05 11:17:26 -08:00
										 |  |  | The memory is initialized as described in the section on initial values | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#The_zero_value">The zero value</a>). | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-09 10:37:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | new(T) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-09-09 10:37:19 -07:00
										 |  |  | For instance | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | type S struct { a int; b float } | 
					
						
							|  |  |  | new(S) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | dynamically allocates memory for a variable of type <code>S</code>, | 
					
						
							|  |  |  | initializes it (<code>a=0</code>, <code>b=0.0</code>), | 
					
						
							|  |  |  | and returns a value of type <code>*S</code> containing the address | 
					
						
							|  |  |  | of the memory. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Making_slices_maps_and_channels">Making slices, maps and channels</h3> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Slices, maps and channels are reference types that do not require the | 
					
						
							|  |  |  | extra indirection of an allocation with <code>new</code>. | 
					
						
							|  |  |  | The built-in function <code>make</code> takes a type <code>T</code>, | 
					
						
							|  |  |  | which must be a slice, map or channel type, | 
					
						
							|  |  |  | optionally followed by a type-specific list of expressions. | 
					
						
							|  |  |  | It returns a value of type <code>T</code> (not <code>*T</code>). | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | The memory is initialized as described in the section on initial values | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | (§<a href="#The_zero_value">The zero value</a>). | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | make(T [, optional list of expressions]) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | For instance | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | make(map[string] int) | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | creates a new map value and initializes it to an empty map. | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The parameters affect sizes for allocating slices, maps, and | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | buffered channels: | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-01-06 13:23:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | s := make([]int, 10, 100)        // slice with len(s) == 10, cap(s) == 100 | 
					
						
							|  |  |  | s := make([]int, 10)             // slice with len(s) == cap(s) == 10 | 
					
						
							|  |  |  | c := make(chan int, 10)          // channel with a buffer size of 10 | 
					
						
							|  |  |  | m := make(map[string] int, 100)  // map with initial space for 100 elements | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-10-30 14:50:23 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | <h3 id="Copying_slices">Copying slices</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The built-in function <code>copy</code> copies array or slice elements from | 
					
						
							|  |  |  | a source <code>src</code> to a destination <code>dst</code> and returns the | 
					
						
							|  |  |  | number of elements copied. Source and destination may overlap. | 
					
						
							|  |  |  | Both arguments must have the same element type <code>T</code> and must be | 
					
						
							|  |  |  | <a href="#Assignment_compatibility">assignment compatible</a> to a slice | 
					
						
							|  |  |  | of type <code>[]T</code>. The number of arguments copied is the minimum of | 
					
						
							|  |  |  | <code>len(src)</code> and <code>len(dst)</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | copy(dst, src []T) int | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Examples: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7} | 
					
						
							|  |  |  | var s = make([]int, 6) | 
					
						
							|  |  |  | n1 := copy(s, &a)     // n1 == 6, s == []int{0, 1, 2, 3, 4, 5} | 
					
						
							|  |  |  | n2 := copy(s, s[2:])  // n2 == 4, s == []int{2, 3, 4, 5, 4, 5} | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | <h3 id="Complex_numbers">Assembling and disassembling complex numbers</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Three functions assemble and disassemble complex numbers. | 
					
						
							|  |  |  | The built-in function <code>cmplx</code> constructs a complex | 
					
						
							|  |  |  | value from a floating-point real and imaginary part, while | 
					
						
							|  |  |  | <code>real</code> and <code>imag</code> | 
					
						
							|  |  |  | extract the real and imaginary parts of a complex value. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre class="grammar"> | 
					
						
							|  |  |  | cmplx(realPart, imaginaryPart floatT) complexT | 
					
						
							|  |  |  | real(complexT) floatT | 
					
						
							|  |  |  | imag(complexT) floatT | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The type of the arguments and return value correspond. | 
					
						
							|  |  |  | For <code>cmplx</code>, the two arguments must be of the same | 
					
						
							|  |  |  | floating-point type and the return type is the complex type | 
					
						
							|  |  |  | with the corresponding floating-point constituents: | 
					
						
							|  |  |  | <code>complex</code> for <code>float</code>, | 
					
						
							|  |  |  | <code>complex64</code> for <code>float32</code>, | 
					
						
							|  |  |  | <code>complex128</code> for <code>float64</code>. | 
					
						
							|  |  |  | The <code>real</code> and <code>imag</code> functions | 
					
						
							|  |  |  | together form the inverse, so for a complex value <code>z</code>, | 
					
						
							|  |  |  | <code>z</code> <code>==</code> <code>cmplx(real(z),</code> <code>imag(z))</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | If the operands of these functions are all constants, the return | 
					
						
							|  |  |  | value is a constant. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | var a = cmplx(2, -2)  // has type complex | 
					
						
							|  |  |  | var b = cmplx(1.0, -1.4)  // has type complex | 
					
						
							|  |  |  | x := float32(math.Cos(math.Pi/2)) | 
					
						
							|  |  |  | var c64 = cmplx(5, -x)  // has type complex64 | 
					
						
							|  |  |  | var im = imag(b)  // has type float | 
					
						
							|  |  |  | var rl = real(c64)  // type float32 | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-18 19:15:25 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <h3 id="Bootstrapping">Bootstrapping</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-16 11:05:14 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | Current implementations provide several built-in functions useful during | 
					
						
							|  |  |  | bootstrapping. These functions are documented for completeness but are not | 
					
						
							|  |  |  | guaranteed to stay in the language. They do not return a result. | 
					
						
							| 
									
										
										
										
											2009-09-16 11:05:14 -07:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-10-19 13:13:59 -07:00
										 |  |  | Function   Behavior | 
					
						
							| 
									
										
										
										
											2009-09-30 12:00:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | print      prints all arguments; formatting of arguments is implementation-specific | 
					
						
							|  |  |  | println    like print but prints spaces between arguments and a newline at the end | 
					
						
							|  |  |  | panic      like print, aborts execution after printing | 
					
						
							|  |  |  | panicln    like println, aborts execution after printing | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Packages">Packages</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Go programs are constructed by linking together <i>packages</i>. | 
					
						
							| 
									
										
										
										
											2009-09-28 19:21:15 -07:00
										 |  |  | A package in turn is constructed from one or more source files | 
					
						
							|  |  |  | that together declare constants, types, variables and functions | 
					
						
							|  |  |  | belonging to the package and which are accessible in all files | 
					
						
							|  |  |  | of the same package. Those elements may be | 
					
						
							|  |  |  | <a href="#Exported_identifiers">exported</a> and used in another package. | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Source_file_organization">Source file organization</h3> | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Each source file consists of a package clause defining the package | 
					
						
							|  |  |  | to which it belongs, followed by a possibly empty set of import | 
					
						
							|  |  |  | declarations that declare packages whose contents it wishes to use, | 
					
						
							|  |  |  | followed by a possibly empty set of declarations of functions, | 
					
						
							| 
									
										
										
										
											2009-08-19 16:44:04 -07:00
										 |  |  | types, variables, and constants. | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | SourceFile       = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Package_clause">Package clause</h3> | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | A package clause begins each source file and defines the package | 
					
						
							|  |  |  | to which the file belongs. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | PackageClause  = "package" PackageName . | 
					
						
							|  |  |  | PackageName    = identifier . | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 10:14:00 -07:00
										 |  |  | <p> | 
					
						
							|  |  |  | The PackageName must not be the <a href="#Blank_identifier">blank identifier</a>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | package math | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | A set of files sharing the same PackageName form the implementation of a package. | 
					
						
							|  |  |  | An implementation may require that all source files for a package inhabit the same directory. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Import_declarations">Import declarations</h3> | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-25 17:00:22 -07:00
										 |  |  | An import declaration states that the source file containing the | 
					
						
							|  |  |  | declaration uses identifiers | 
					
						
							|  |  |  | <a href="#Exported_identifiers">exported</a> by the <i>imported</i> | 
					
						
							|  |  |  | package and enables access to them.  The import names an | 
					
						
							|  |  |  | identifier (PackageName) to be used for access and an ImportPath | 
					
						
							|  |  |  | that specifies the package to be imported. | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-10 16:06:40 -07:00
										 |  |  | <pre class="ebnf"> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ImportDecl       = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) . | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | ImportSpec       = [ "." | PackageName ] ImportPath . | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | ImportPath       = string_lit . | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-25 17:00:22 -07:00
										 |  |  | The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a> | 
					
						
							|  |  |  | to access the exported identifiers of the package within the importing source file. | 
					
						
							|  |  |  | It is declared in the <a href="#Blocks">file block</a>. | 
					
						
							|  |  |  | If the PackageName is omitted, it defaults to the identifier specified in the | 
					
						
							|  |  |  | <a href="#Package_clauses">package clause</a> of the imported package. | 
					
						
							|  |  |  | If an explicit period (<code>.</code>) appears instead of a name, all the | 
					
						
							|  |  |  | package's exported identifiers will be declared in the current file's | 
					
						
							|  |  |  | file block and can be accessed without a qualifier. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The interpretation of the ImportPath is implementation-dependent but | 
					
						
							|  |  |  | it is typically a substring of the full file name of the compiled | 
					
						
							|  |  |  | package and may be relative to a repository of installed packages. | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-08-20 10:22:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-25 17:00:22 -07:00
										 |  |  | Assume we have compiled a package containing the package clause | 
					
						
							|  |  |  | <code>package math</code>, which exports function <code>Sin</code>, and | 
					
						
							|  |  |  | installed the compiled package in the file identified by | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <code>"lib/math"</code>. | 
					
						
							| 
									
										
										
										
											2009-09-25 17:00:22 -07:00
										 |  |  | This table illustrates how <code>Sin</code> may be accessed in files | 
					
						
							|  |  |  | that import the package after the | 
					
						
							|  |  |  | various types of import declaration. | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | Import declaration          Local name of Sin | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import   "lib/math"         math.Sin | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | import M "lib/math"         M.Sin | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | import . "lib/math"         Sin | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-25 17:00:22 -07:00
										 |  |  | An import declaration declares a dependency relation between | 
					
						
							|  |  |  | the importing and imported package. | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | It is illegal for a package to import itself or to import a package without | 
					
						
							|  |  |  | referring to any of its exported identifiers. To import a package solely for | 
					
						
							|  |  |  | its side-effects (initialization), use the <a href="#Blank_identifier">blank</a> | 
					
						
							|  |  |  | identifier as explicit package name: | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | import _ "lib/math" | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="An_example_package">An example package</h3> | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | Here is a complete Go package that implements a concurrent prime sieve. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:17:29 -08:00
										 |  |  | import "fmt" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | // Send the sequence 2, 3, 4, ... to channel 'ch'. | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | func generate(ch chan<- int) { | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	for i := 2; ; i++ { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 		ch <- i  // Send 'i' to channel 'ch'. | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 21:23:58 -08:00
										 |  |  | // Copy the values from channel 'src' to channel 'dst', | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | // removing those divisible by 'prime'. | 
					
						
							| 
									
										
										
										
											2009-09-25 14:11:03 -07:00
										 |  |  | func filter(src <-chan int, dst chan<- int, prime int) { | 
					
						
							|  |  |  | 	for i := range src {	// Loop over values received from 'src'. | 
					
						
							|  |  |  | 		if i%prime != 0 { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 			dst <- i  // Send 'i' to channel 'dst'. | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // The prime sieve: Daisy-chain filter processes together. | 
					
						
							|  |  |  | func sieve() { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	ch := make(chan int)  // Create a new channel. | 
					
						
							|  |  |  | 	go generate(ch)       // Start generate() as a subprocess. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 		prime := <-ch | 
					
						
							|  |  |  | 		fmt.Print(prime, "\n") | 
					
						
							|  |  |  | 		ch1 := make(chan int) | 
					
						
							|  |  |  | 		go filter(ch, ch1, prime) | 
					
						
							|  |  |  | 		ch = ch1 | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | func main() { | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | 	sieve() | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="Program_initialization_and_execution">Program initialization and execution</h2> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="The_zero_value">The zero value</h3> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | When memory is allocated to store a value, either through a declaration | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | or <code>make()</code> or <code>new()</code> call, | 
					
						
							|  |  |  | and no explicit initialization is provided, the memory is | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | given a default initialization.  Each element of such a value is | 
					
						
							| 
									
										
										
										
											2009-08-21 11:25:00 -07:00
										 |  |  | set to the <i>zero value</i> for its type: <code>false</code> for booleans, | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <code>0</code> for integers, <code>0.0</code> for floats, <code>""</code> | 
					
						
							| 
									
										
										
										
											2009-09-24 19:36:48 -07:00
										 |  |  | for strings, and <code>nil</code> for pointers, functions, interfaces, slices, channels, and maps. | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | This initialization is done recursively, so for instance each element of an | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | array of structs will have its fields zeroed if no value is specified. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | These two simple declarations are equivalent: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | var i int | 
					
						
							|  |  |  | var i int = 0 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | After | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-12-10 16:43:01 -08:00
										 |  |  | type T struct { i int; f float; next *T } | 
					
						
							|  |  |  | t := new(T) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | the following holds: | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | t.i == 0 | 
					
						
							|  |  |  | t.f == 0.0 | 
					
						
							|  |  |  | t.next == nil | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | The same would also be true after | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | var t T | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Program_execution">Program execution</h3> | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | A package with no imports is initialized by assigning initial values to | 
					
						
							| 
									
										
										
										
											2009-09-15 11:56:39 -07:00
										 |  |  | all its package-level variables | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | and then calling any | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | package-level function with the name and signature of | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | func init() | 
					
						
							|  |  |  | </pre> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | defined in its source. | 
					
						
							|  |  |  | A package may contain multiple | 
					
						
							|  |  |  | <code>init()</code> functions, even | 
					
						
							|  |  |  | within a single source file; they execute | 
					
						
							|  |  |  | in unspecified order. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-09-15 11:56:39 -07:00
										 |  |  | Within a package, package-level variables are initialized, | 
					
						
							|  |  |  | and constant values are determined, in | 
					
						
							|  |  |  | data-dependent order: if the initializer of <code>A</code> | 
					
						
							|  |  |  | depends on the value of <code>B</code>, <code>A</code> | 
					
						
							|  |  |  | will be set after <code>B</code>. | 
					
						
							|  |  |  | It is an error if such dependencies form a cycle. | 
					
						
							|  |  |  | Dependency analysis is done lexically: <code>A</code> | 
					
						
							|  |  |  | depends on <code>B</code> if the value of <code>A</code> | 
					
						
							|  |  |  | contains a mention of <code>B</code>, contains a value | 
					
						
							|  |  |  | whose initializer | 
					
						
							|  |  |  | mentions <code>B</code>, or mentions a function that | 
					
						
							|  |  |  | mentions <code>B</code>, recursively. | 
					
						
							|  |  |  | If two items are not interdependent, they will be initialized | 
					
						
							|  |  |  | in the order they appear in the source. | 
					
						
							| 
									
										
										
										
											2009-09-15 15:56:44 -07:00
										 |  |  | Since the dependency analysis is done per package, it can produce | 
					
						
							|  |  |  | unspecified results  if <code>A</code>'s initializer calls a function defined | 
					
						
							| 
									
										
										
										
											2009-09-15 11:56:39 -07:00
										 |  |  | in another package that refers to <code>B</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-09-26 16:41:50 -07:00
										 |  |  | Initialization code may contain "go" statements, but the functions | 
					
						
							| 
									
										
										
										
											2009-02-06 17:01:10 -08:00
										 |  |  | they invoke do not begin execution until initialization of the entire | 
					
						
							|  |  |  | program is complete. Therefore, all initialization code is run in a single | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | goroutine. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | An <code>init()</code> function cannot be referred to from anywhere | 
					
						
							|  |  |  | in a program. In particular, <code>init()</code> cannot be called explicitly, | 
					
						
							|  |  |  | nor can a pointer to <code>init</code> be assigned to a function variable. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | If a package has imports, the imported packages are initialized | 
					
						
							| 
									
										
										
										
											2008-09-26 16:41:50 -07:00
										 |  |  | before initializing the package itself. If multiple packages import | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | a package <code>P</code>, <code>P</code> will be initialized only once. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | The importing of packages, by construction, guarantees that there can | 
					
						
							|  |  |  | be no cyclic dependencies in initialization. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2008-08-28 17:47:53 -07:00
										 |  |  | A complete program, possibly created by linking multiple packages, | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | must have one package called <code>main</code>, with a function | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2008-09-09 10:37:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | func main() { ... } | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2008-09-09 10:37:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | defined. | 
					
						
							|  |  |  | The function <code>main.main()</code> takes no arguments and returns no value. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | Program execution begins by initializing the <code>main</code> package and then | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | invoking <code>main.main()</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | When <code>main.main()</code> returns, the program exits.  It does not wait for | 
					
						
							|  |  |  | other (non-<code>main</code>) goroutines to complete. | 
					
						
							| 
									
										
										
										
											2009-02-25 16:20:44 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-03-04 20:39:39 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Implementation restriction: The compiler assumes package <code>main</code> | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | is not imported by any other package. | 
					
						
							| 
									
										
										
										
											2009-03-04 20:39:39 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h2 id="System_considerations">System considerations</h2> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Package_unsafe">Package <code>unsafe</code></h3> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-27 16:47:48 -08:00
										 |  |  | The built-in package <code>unsafe</code>, known to the compiler, | 
					
						
							|  |  |  | provides facilities for low-level programming including operations | 
					
						
							|  |  |  | that violate the type system. A package using <code>unsafe</code> | 
					
						
							|  |  |  | must be vetted manually for type safety.  The package provides the | 
					
						
							|  |  |  | following interface: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | package unsafe | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 21:37:46 -07:00
										 |  |  | type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type | 
					
						
							|  |  |  | type Pointer *ArbitraryType | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 21:37:46 -07:00
										 |  |  | func Alignof(variable ArbitraryType) int | 
					
						
							|  |  |  | func Offsetof(selector ArbitraryType) int | 
					
						
							|  |  |  | func Sizeof(variable ArbitraryType) int | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func Reflect(val interface {}) (typ runtime.Type, addr uintptr) | 
					
						
							|  |  |  | func Typeof(val interface {}) reflect.Type | 
					
						
							|  |  |  | func Unreflect(typ runtime.Type, addr uintptr) interface{} | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | Any pointer or value of type <code>uintptr</code> can be converted into | 
					
						
							|  |  |  | a <code>Pointer</code> and vice versa. | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | The function <code>Sizeof</code> takes an expression denoting a | 
					
						
							| 
									
										
										
										
											2009-08-14 17:41:52 -07:00
										 |  |  | variable of any type and returns the size of the variable in bytes. | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | The function <code>Offsetof</code> takes a selector (§<a href="#Selectors">Selectors</a>) denoting a struct | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | field of any type and returns the field offset in bytes relative to the | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | struct's address. | 
					
						
							|  |  |  | For a struct <code>s</code> with field <code>f</code>: | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | uintptr(unsafe.Pointer(&s)) + uintptr(unsafe.Offsetof(s.f)) == uintptr(unsafe.Pointer(&s.f)) | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | Computer architectures may require memory addresses to be <i>aligned</i>; | 
					
						
							|  |  |  | that is, for addresses of a variable to be a multiple of a factor, | 
					
						
							|  |  |  | the variable's type's <i>alignment</i>.  The function <code>Alignof</code> | 
					
						
							|  |  |  | takes an expression denoting a variable of any type and returns the | 
					
						
							|  |  |  | alignment of the (type of the) variable in bytes.  For a variable | 
					
						
							|  |  |  | <code>x</code>: | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <pre> | 
					
						
							|  |  |  | uintptr(unsafe.Pointer(&x)) % uintptr(unsafe.Alignof(x)) == 0 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-05-13 16:56:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <p> | 
					
						
							|  |  |  | Calls to <code>Alignof</code>, <code>Offsetof</code>, and | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | <code>Sizeof</code> are compile-time constant expressions of type <code>int</code>. | 
					
						
							|  |  |  | </p> | 
					
						
							|  |  |  | <p> | 
					
						
							|  |  |  | The functions <code>unsafe.Typeof</code>, | 
					
						
							|  |  |  | <code>unsafe.Reflect</code>, | 
					
						
							| 
									
										
										
										
											2009-09-28 14:16:33 -07:00
										 |  |  | and <code>unsafe.Unreflect</code> allow access at run time to the dynamic | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | types and values stored in interfaces. | 
					
						
							|  |  |  | <code>Typeof</code> returns a representation of | 
					
						
							|  |  |  | <code>val</code>'s | 
					
						
							|  |  |  | dynamic type as a <code>runtime.Type</code>. | 
					
						
							|  |  |  | <code>Reflect</code> allocates a copy of | 
					
						
							|  |  |  | <code>val</code>'s dynamic | 
					
						
							|  |  |  | value and returns both the type and the address of the copy. | 
					
						
							|  |  |  | <code>Unreflect</code> inverts <code>Reflect</code>, | 
					
						
							|  |  |  | creating an | 
					
						
							|  |  |  | interface value from a type and address. | 
					
						
							| 
									
										
										
										
											2010-01-18 15:59:14 -08:00
										 |  |  | The <a href="/pkg/reflect/"><code>reflect</code> package</a> built on these primitives | 
					
						
							| 
									
										
										
										
											2009-09-15 09:54:22 -07:00
										 |  |  | provides a safe, more convenient way to inspect interface values. | 
					
						
							| 
									
										
										
										
											2009-05-12 21:37:46 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 21:57:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | <h3 id="Size_and_alignment_guarantees">Size and alignment guarantees</h3> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-08-20 11:11:03 -07:00
										 |  |  | For the numeric types (§<a href="#Numeric_types">Numeric types</a>), the following sizes are guaranteed: | 
					
						
							| 
									
										
										
										
											2009-09-25 15:36:25 -07:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 13:36:14 -08:00
										 |  |  | <pre class="grammar"> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | type                      size in bytes | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | byte, uint8, int8         1 | 
					
						
							|  |  |  | uint16, int16             2 | 
					
						
							|  |  |  | uint32, int32, float32    4 | 
					
						
							|  |  |  | uint64, int64, float64    8 | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <p> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | The following minimal alignment properties are guaranteed: | 
					
						
							| 
									
										
										
										
											2009-02-19 17:31:36 -08:00
										 |  |  | </p> | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | <ol> | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <li>For a variable <code>x</code> of any type: <code>1 <= unsafe.Alignof(x) <= unsafe.Maxalign</code>. | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 17:19:21 -08:00
										 |  |  | <li>For a variable <code>x</code> of numeric type: <code>unsafe.Alignof(x)</code> is the smaller | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  |    of <code>unsafe.Sizeof(x)</code> and <code>unsafe.Maxalign</code>, but at least 1. | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <li>For a variable <code>x</code> of struct type: <code>unsafe.Alignof(x)</code> is the largest of | 
					
						
							|  |  |  |    all the values <code>unsafe.Alignof(x.f)</code> for each field <code>f</code> of x, but at least 1. | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:22:05 -08:00
										 |  |  | <li>For a variable <code>x</code> of array type: <code>unsafe.Alignof(x)</code> is the same as | 
					
						
							|  |  |  |    <code>unsafe.Alignof(x[0])</code>, but at least 1. | 
					
						
							| 
									
										
										
										
											2009-02-19 16:49:10 -08:00
										 |  |  | </ol> | 
					
						
							| 
									
										
										
										
											2009-02-11 13:46:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | <h2 id="Implementation_differences"><span class="alert">Implementation differences - TODO</span></h2> | 
					
						
							| 
									
										
										
										
											2009-09-01 14:07:30 -07:00
										 |  |  | <ul> | 
					
						
							| 
									
										
										
										
											2009-10-22 09:41:38 -07:00
										 |  |  | 	<li><span class="alert">Implementation does not honor the restriction on goto statements and targets (no intervening declarations).</span></li> | 
					
						
							|  |  |  | 	<li><span class="alert">Method expressions are not implemented.</span></li> | 
					
						
							| 
									
										
										
										
											2010-03-04 12:35:16 -08:00
										 |  |  | 	<li><span class="alert">The implementation of complex numbers is incomplete.</span></li> | 
					
						
							| 
									
										
										
										
											2009-11-07 22:00:59 -08:00
										 |  |  | 	<li><span class="alert">Gccgo allows only one init() function per source file.</span></li> | 
					
						
							| 
									
										
										
										
											2009-09-01 14:07:30 -07:00
										 |  |  | </ul> |