GO語言IO操作

來源:互聯網
上載者:User
Readers

io 包指定了 io.Reader 介面, 它表示從資料流結尾讀取。
Go 標準庫包含了這個介面的許多實現, 包括檔案、網路連接、壓縮、加密等等。
io.Reader 介面有一個 Read 方法:
func (T) Read(b []byte) (n int, err error)
Read 用資料填充指定的位元組 slice,並且返回填充的位元組數和錯誤資訊。 在遇到資料流結尾時,返回 io.EOF 錯誤。
例子代碼建立了一個 strings.Reader。 並且以每次 8 位元組的速度讀取它的輸出。

package mainimport ("fmt""io""strings")func main() {r := strings.NewReader("Hello, Reader!")b := make([]byte, 8)for {n, err := r.Read(b)fmt.Printf("n = %v err = %v b = %v\n", n, err, b)fmt.Printf("b[:n] = %q\n", b[:n])if err == io.EOF {break}}}
列印結果:
n = 8 err = <nil> b = [72 101 108 108 111 44 32 82]
b[:n] = "Hello, R"
n = 6 err = <nil> b = [101 97 100 101 114 33 32 82]
b[:n] = "eader!"
n = 0 err = EOF b = [101 97 100 101 114 33 32 82]
b[:n] = ""
(待完善--------------------------------------------------------------------------)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.