x := [3]string{"Лайка", "Белка", "Стрелка"}
s := x[:] // a slice referencing the storage of x
d := []byte{'r', 'o', 'a', 'd'}
e := d[2:]
// e == []byte{'a', 'd'}
e[1] = 'm'
// e == []byte{'a', 'm'}
// d == []byte{'r', 'o', 'a', 'm'}
s = s[2:4]
b := []byte{'g', 'o', 'l', 'a', 'n', 'g'}
// b[1:4] == []byte{'o', 'l', 'a'}, sharing the same storage as b
s = s[:cap(s)]
var s []byte
s = make([]byte, 5, 5)
// s == []byte{0, 0, 0, 0, 0}
// b[:2] == []byte{'g', 'o'}
// b[2:] == []byte{'l', 'a', 'n', 'g'}
// b[:] == b
len(s) == 5
cap(s) == 5
letters := []string{"a", "b", "c", "d"}
func make([]T, len, cap) []T
Recommend
Go Slices: usage and internals Slices
Go Slices: usage and internals Arrays
Go Codewalk: Generating arbitrary text: a Markov chain algorithm
Weekly Snapshot History 2012-03-22 (Go 1 Release Candidate 2)
Weekly Snapshot History 2012-03-27 (Go 1)
Pre-Go 1 Release History r57 (released 2011/05/03) Language
Pre-Go 1 Release History r59 (released 2011/08/01) Packages
Go Canceling in-progress operations Canceling database operations after a timeout
Go Executing SQL statements that don't return data
Go Executing transactions Example
Go Querying for data Handling multiple result sets
Go Querying for data Handling nullable column values
Go Querying for data Querying for multiple rows
Go Querying for data Querying for a single row
Go Avoiding SQL injection risk
Go Using prepared statements How you use prepared statements
Go Opening a database handle Freeing resources
Go Opening a database handle Storing database credentials
Go Opening a database handle Confirming a connection
Go Opening a database handle Opening a database handle Opening with a Connector
Go Opening a database handle Opening a database handle Opening with a connection string
Go Opening a database handle Locating and importing a database driver
Go Call your code from another module
Go Compile and install the application
Go Return greetings for multiple people
Tutorial: Get started with Go Call code in an external package
Tutorial: Get started with Go Write some code
Go Tutorial: Getting started with fuzzing Completed code
Go Tutorial: Getting started with fuzzing Fix the double reverse error Fix the error Run the code
Go Tutorial: Getting started with fuzzing Fix the double reverse error Fix the error Write the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Fix the error Run the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Fix the error Write the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Diagnose the error
Go Tutorial: Getting started with fuzzing Add a fuzz test Run the code
Go Tutorial: Getting started with fuzzing Add a fuzz test Write the code
Go Tutorial: Getting started with fuzzing Add a unit test Run the code