首页 > 其他 > 详细

A Tour of Go Exercise: Slices

时间:2014-10-27 06:51:47      阅读:336      评论:0      收藏:0      [点我收藏+]

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)
}

 

A Tour of Go Exercise: Slices

原文:http://www.cnblogs.com/ghgyj/p/4053352.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!