Спецификация языка программирования Go | Participants
|
- Statistics
- Participants
- Translate into Russian
- Translation result
- 16% translated in draft.
If you do not want to register an account, you can sign in with OpenID.
The Go Programming Language Specification | ||
The Go Programming Language Specification | ||
Version of March 3, 2011 | ||
Introduction | ||
Notation | ||
Source code representation | ||
Characters | ||
Letters and digits | ||
Lexical elements | ||
Comments | ||
Tokens | — Что это за термин такой? — Knivy | |
Semicolons | ||
Identifiers | ||
Keywords | ||
Operators and Delimiters | ||
Integer literals | ||
Floating-point literals | ||
Imaginary literals | ||
Character literals | ||
String literals | ||
Constants | ||
Types | ||
Method sets | — Обычно в языках программирования методы - это и есть функции, разве нет? — Knivy | |
Boolean types | ||
Numeric types | ||
String types | ||
Array types | ||
Slice types | ||
Struct types | ||
Pointer types | ||
Function types | ||
Interface types | ||
Map types | ||
Channel types | ||
Properties of types and values | ||
Type identity | ||
Assignability | ||
Blocks | ||
Declarations and scope | ||
Label scopes | — Предположительно — Knivy | |
Predeclared identifiers | ||
Exported identifiers | ||
Blank identifier | ||
Constant declarations | ||
Iota | ||
Type declarations | ||
Variable declarations | ||
Short variable declarations | ||
Function declarations | ||
Method declarations | ||
Expressions | ||
Operands | ||
Qualified identifiers | ||
Composite literals | ||
Function literals | ||
Primary expressions | ||
Selectors | — Тоже больше похоже на кальку, чем термин — Knivy | |
Indexes | ||
Slices | ||
Type assertions | ||
Calls | ||
Passing arguments to ... parameters | ||
Operators | ||
Operator precedence | ||
Arithmetic operators | ||
Integer overflow | ||
Comparison operators | ||
Logical operators | ||
Address operators | ||
Receive operator | ||
Method expressions | ||
Conversions | ||
Constant expressions | ||
Order of evaluation | ||
Statements | ||
Empty statements | ||
Labeled statements | ||
Expression statements | ||
Send statements | ||
IncDec statements | ||
Assignments | ||
If statements | ||
Switch statements | ||
For statements | ||
Go statements | — Чем отличается от Goto? — Knivy | |
Select statements | ||
Return statements | ||
Break statements | ||
Continue statements | ||
Goto statements | ||
Fallthrough statements | ||
Defer statements | ||
Built-in functions | ||
Close and closed | ||
Length and capacity | ||
Allocation | ||
Making slices, maps and channels | ||
Appending to and copying slices | ||
Assembling and disassembling complex numbers | ||
Handling panics | ||
Bootstrapping | — Под этим термином обычно имеется в виду раскрутка чего-то своими силами, без платной помощи профессоналов — Knivy | |
Packages | ||
Source file organization | ||
Package clause | ||
Import declarations | ||
An example package | ||
Program initialization and execution | ||
The zero value | ||
Program execution | ||
Run-time panics | ||
System considerations | ||
Package unsafe | ||
Size and alignment guarantees | ||
Implementation differences - TODO | ||
Introduction[Top] | ||
This is a reference manual for the Go programming language. For more information and other documents, see http://golang.org. | Это справочное руководство по языку программирования Go. Чтобы получить дополнительную информацию и другие документы, посетите сайт http://golang.org. |

— Оглавление пока что можно использовать как словарь — Xendz