A Tour of Go Exercise: Slices

Implement Pic. It should return a slice of length dy, each element of which is a slice of dx 8-bit unsigned integers. When you run the program, it will display your picture, interpreting the integers as grayscale (well, bluescale) values.

The choice of image is up to you. Interesting functions include x^y,(x+y)/2, and x*y.

(You need to use a loop to allocate each []uint8 inside the [][]uint8.)

(Use uint8(intValue) to convert between types.

package main

import "code.google.com/p/go-tour/pic"

func Pic(dx, dy int) [][]uint8 {
    s := make([][]uint8,dx)
    for i := range s {
        s[i] = make([]uint8,dy)
        for j := range s[i]{
            s[i][j] = uint8(i * j)
        }
    }
    return s
}

func main() {
    pic.Show(Pic)
}
package main 

import "fmt"

func main() {
    s := make([][]uint8,10)
    //创建的先是二维的
    fmt.Println(s)//[[] [] [] [] [] [] [] [] [] []]
}
原文地址:https://www.cnblogs.com/ghgyj/p/4053352.html