码迷,mamicode.com
首页 > 其他好文 > 详细

A Tour of Go Slices

时间:2014-10-27 01:45:20      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   ar   for   sp   div   log   

A slice points to an array of values and also includes a length.

[]T is a slice with elements of type T.

 

package main 

import "fmt"

func main() {
    p := []int{2, 3, 5, 7, 11, 13}
    fmt.Println("p ==", p)

    for i := 0; i < len(p); i++ {
        fmt.Printf("p[%d] == %d\n", i, p[i])
    }
}

 

A Tour of Go Slices

标签:des   style   blog   color   ar   for   sp   div   log   

原文地址:http://www.cnblogs.com/ghgyj/p/4053315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!