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

golang pipe

时间:2015-04-06 16:56:50      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

===============golang pipe==============
package main

import (
    "fmt"
    "io"
)

func main() {
    reader, writer := io.Pipe()
    inputData := []byte("1234567890ABCD")
    go writer.Write(inputData)
    outputData := make([]byte, 11)
    n, _ := reader.Read(outputData)
    fmt.Println(string(outputData))
    fmt.Println("read number", n)
    fmt.Println(string(outputData))

}

/*
1234567890A
read number 11
1234567890A
*/

 

golang pipe

标签:

原文地址:http://www.cnblogs.com/rojas/p/4396031.html

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