码迷,mamicode.com
首页 >  
搜索关键字:tour    ( 464个结果
A Tour of Go Slices
A slice points to an array of values and also includes a length.[]Tis a slice with elements of typeT.package main import "fmt"func main() { p := []...
分类:其他好文   时间:2014-10-27 01:45:20    阅读次数:222
A Tour of Go Making slices
Slices are created with themakefunction. It works by allocating a zeroed array and returning a slice that refers to that array:a := make([]int, 5) //....
分类:其他好文   时间:2014-10-27 01:44:02    阅读次数:183
A Tour of Go Struct Literals
A struct literal denotes a newly allocated struct value by listing the values of its fields.You can list just a subset of fields by using theName:synt...
分类:其他好文   时间:2014-10-27 01:43:25    阅读次数:206
A Tour of Go Arrays
The type[n]Tis an array ofnvalues of typeT.The expressionvar a [10]intdeclares a variableaas an array of ten integers.An array's length is part of its...
分类:其他好文   时间:2014-10-27 01:40:52    阅读次数:169
A Tour of Go If and else
Variables declared inside anifshort statement are also available inside any of theelseblocks.package main import ( "fmt" "math")func pow(x, n, ...
分类:其他好文   时间:2014-10-27 00:23:52    阅读次数:165
A Tour of Go Forever
If you omit the loop condition it loops forever, so an infinite loop is compactly(简洁地;紧密地;细密地) expressed.package main func main() { for { ...
分类:其他好文   时间:2014-10-27 00:20:36    阅读次数:239
A Tour of Go Exercise: Loops and Functions
As a simple way to play with functions and loops, implement the square root function using Newton's method.In this case, Newton's method is to approxi...
分类:其他好文   时间:2014-10-27 00:18:38    阅读次数:219
A Tour of Go Pointers
Go has pointers, but no pointer arithmetic.Struct fields can be accessed through a struct pointer. The indirection through the pointer is transparent....
分类:其他好文   时间:2014-10-27 00:18:05    阅读次数:174
A Tour of Go Structs
Astructis a collection of fields.(And atypedeclaration does what you'd expect.)package main import "fmt"type Vertext struct { X int Y int}func ...
分类:其他好文   时间:2014-10-27 00:17:33    阅读次数:190
A Tour of Go If
Theifstatement looks as it does in C or Java, except that the( )are gone and the{ }are required.(Sound familiar?)package main import ( "fmt" "m...
分类:其他好文   时间:2014-10-27 00:11:28    阅读次数:162
464条   上一页 1 ... 36 37 38 39 40 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!